# HG changeset patch # User Matt Johnston # Date 1092929267 0 # Node ID 27e633c92158bb52297be34c19ae4789f407eaed # Parent b8e36c1a5520b381142c8b684593096be4712f93 Remove obselete documentation diff -r b8e36c1a5520 -r 27e633c92158 debian/compat --- a/debian/compat Wed Aug 18 16:42:08 2004 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -4 diff -r b8e36c1a5520 -r 27e633c92158 debian/conffiles diff -r b8e36c1a5520 -r 27e633c92158 debian/dirs --- a/debian/dirs Wed Aug 18 16:42:08 2004 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -usr/bin -usr/sbin diff -r b8e36c1a5520 -r 27e633c92158 debian/docs --- a/debian/docs Wed Aug 18 16:42:08 2004 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -README -TODO diff -r b8e36c1a5520 -r 27e633c92158 debian/postinst --- a/debian/postinst Wed Aug 18 16:42:08 2004 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,90 +0,0 @@ -#! /bin/sh -# postinst script for #PACKAGE# -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure) - if [ ! -e /etc/dropbear/dropbear_rsa_host_key ]; then - if [ -f /etc/ssh/ssh_host_rsa_key ]; then - echo "Converting existing OpenSSH RSA host key to Dropbear format." - /usr/bin/dropbearconvert openssh dropbear /etc/ssh/ssh_host_rsa_key /etc/dropbear/dropbear_rsa_host_key - else - echo "Generating Dropbear RSA key. Please wait." - /usr/bin/dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key - fi - fi - if [ ! -e /etc/dropbear/dropbear_dss_host_key ]; then - if [ -f /etc/ssh/ssh_host_dsa_key ]; then - echo "Converting existing OpenSSH RSA host key to Dropbear format." - /usr/bin/dropbearconvert openssh dropbear /etc/ssh/ssh_host_dsa_key /etc/dropbear/dropbear_dss_host_key - else - echo "Generating Dropbear DSS key. Please wait." - /usr/bin/dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key - fi - fi - if [ ! -s /etc/default/dropbear ]; then - # check whether OpenSSH seems to be installed. - if dpkg -l ssh >/dev/null 2>&1; then - echo "OpenSSH appears to be installed. Setting /etc/default/dropbear" - echo "so that Dropbear will not start by default. Edit this file to change" - echo "this behaviour." - echo "# disabled because OpenSSH is installed, change to NO_START=0 to enable Dropbear" > /etc/default/dropbear - echo "NO_START=1" >> /etc/default/dropbear - fi - echo "# the TCP port that Dropbear listens on" >> /etc/default/dropbear - echo "DROPBEAR_PORT=22" >> /etc/default/dropbear - echo "# any additional arguments for Dropbear" >> /etc/default/dropbear - echo "DROPBEAR_EXTRA_ARGS=" >> /etc/default/dropbear - echo "# specify an optional banner file containing a message to be" >> /etc/default/dropbear - echo "# sent to clients before they connect, such as \"/etc/issue.net\"" >> /etc/default/dropbear - echo "DROPBEAR_BANNER=\"\"" >> /etc/default/dropbear - echo "# RSA hostkey file (default: /etc/dropbear/dropbear_rsa_host_key" >> /etc/default/dropbear - echo "#DROPBEAR_RSAKEY=\"/etc/dropbear/dropbear_rsa_host_key\"" >> /etc/default/dropbear - echo "# DSS hostkey file (default: /etc/dropbear/dropbear_dss_host_key" >> /etc/default/dropbear - echo "#DROPBEAR_DSSKEY=\"/etc/dropbear/dropbear_dss_host_key\"" >> /etc/default/dropbear - fi - if [ -e /etc/init.d/dropbear ]; then - update-rc.d dropbear defaults >/dev/null - /etc/init.d/dropbear restart - fi - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - - - -exit 0 - - diff -r b8e36c1a5520 -r 27e633c92158 debian/postrm --- a/debian/postrm Wed Aug 18 16:42:08 2004 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,45 +0,0 @@ -#! /bin/sh -# postrm script for #PACKAGE# -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `purge' -# * `upgrade' -# * `failed-upgrade' -# * `abort-install' -# * `abort-install' -# * `abort-upgrade' -# * `disappear' overwrit>r> -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - if [ "$1" = "purge" ] - then - if [ -e /etc/dropbear ]; then - rm -f /etc/dropbear/dropbear_rsa_host_key - rm -f /etc/dropbear/dropbear_dss_host_key - rmdir --ignore-fail-on-non-empty /etc/dropbear - fi - update-rc.d dropbear remove >/dev/null - fi - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 1 - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0