#!/bin/sh -e # # TODO: # - error checking on values provided by debconf frontend BASEDIR=/srv/tftp DAEMON="--daemon" . /usr/share/debconf/confmodule db_version 2.0 # Do not ask if we want to configure it #db_get atftpd/configure #if [ "$RET" = "true" ]; then db_get atftpd/use_inetd if [ "$RET" ]; then if [ "$RET" = "true" ]; then USE_INETD=true else USE_INETD=false fi else USE_INETD=true fi db_get atftpd/port if [ "$RET" ]; then TFTPD_PORT="--port $RET" fi db_get atftpd/tftpd-timeout if [ "$RET" ]; then TFTPD_TIMEOUT="--tftpd-timeout $RET" fi db_get atftpd/retry-timeout if [ "$RET" ]; then RETRY_TIMEOUT="--retry-timeout $RET" fi db_get atftpd/maxthread if [ "$RET" ]; then MAXTHREAD="--maxthread $RET" fi db_get atftpd/timeout if [ "$RET" != "true" ]; then NOTIMEOUT="--no-timeout" fi db_get atftpd/tsize if [ "$RET" != "true" ]; then NOTSIZE="--no-tsize" fi db_get atftpd/blksize if [ "$RET" != "true" ]; then NOBLKSIZE="--no-blksize" fi db_get atftpd/multicast if [ "$RET" != "true" ]; then NOMCAST="--no-multicast" else db_get atftpd/mcast_port if [ "$RET" ]; then MCASTPORT="--mcast-port $RET" fi db_get atftpd/mcast_addr if [ "$RET" ]; then MCASTADDR="--mcast-addr $RET" fi db_get atftpd/ttl if [ "$RET" ]; then MCASTTTL="--mcast-ttl $RET" fi fi db_get atftpd/verbosity if [ "$RET" ]; then RET=`echo $RET | cut -f1 -d ' '` VERBOSITY="--verbose=$RET" fi db_get atftpd/logtofile if [ "$RET" = "true" ]; then db_get atftpd/logfile if [ "$RET" ]; then LOGFILE="--logfile $RET" # if the file doesn't exist, create it if [ ! -f $RET ]; then touch $RET chown nobody:nogroup $RET chmod 640 $RET fi # create the logrotate file if [ ! -f /etc/logrotate.d/atftpd ] ; then cat >/etc/logrotate.d/atftpd < /etc/default/atftpd echo "# OPTIONS below are used only with init script" >> /etc/default/atftpd echo "OPTIONS=\"$DAEMON $TFTPD_PORT $RETRY_TIMEOUT $NOTIMEOUT $NOTSIZE $NOBLKSIZE $NOMCAST \ $MCASTPORT $MCASTADDR $MCASTTTL $MAXTHREAD $VERBOSITY $LOGFILE $BASEDIR\""|tr -s " " >> /etc/default/atftpd fi update-inetd --disable tftp else INETOPTS=`echo "$TFTPD_TIMEOUT $RETRY_TIMEOUT $NOTIMEOUT $NOTSIZE $NOBLKSIZE $NOMCAST $MCASTPORT $MCASTADDR $MCASTTTL $MAXTHREAD $VERBOSITY $LOGFILE $BASEDIR"|tr -s " "` update-inetd --group BOOT --add "tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd $INETOPTS" if [ ! -f /etc/default/atftpd ]; then echo "USE_INETD=true" > /etc/default/atftpd echo "# OPTIONS below are used only with init script" >> /etc/default/atftpd echo "OPTIONS=\"$INETOPTS\""|tr -s " " >> /etc/default/atftpd fi fi # Automatically added by dh_installinit/12.1.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -x "/etc/init.d/atftpd" ]; then update-rc.d atftpd defaults >/dev/null invoke-rc.d atftpd start || exit 1 fi fi # End automatically added section # tell debconf we are done. otherwise, it hangs waiting for the daemon. db_stop; exit 0;