#!/bin/sh # # TODO: # - error checking on values provided by debconf frontend set -e BASEDIR="/srv/tftp" CONFIGFILE="/etc/default/atftpd" SYSDSOCK="/usr/lib/systemd/system/atftpd.socket" . /usr/share/debconf/confmodule db_get atftpd/port if [ "$RET" ]; then PORT="$RET" TFTPD_PORT="--port $PORT" 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/windowsize if [ "$RET" != "true" ]; then NOWINDOWSIZE="--no-windowsize" 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 ] || \ ! grep -q "^$RET " /etc/logrotate.d/atftpd > /dev/null 2>&1 ; then cat >/etc/logrotate.d/atftpd < "$CONFIGFILE" ## Options for atftpd: OPTIONS="$OPTIONS" EOF else grep -Eq '^ *OPTIONS=' $CONFIGFILE || echo "OPTIONS=" >> $CONFIGFILE sed -i "s|^ *OPTIONS=.*|OPTIONS=\"$OPTIONS\"|" $CONFIGFILE fi [ -f "$SYSDSOCK" ] && sed -i -e "s|^ *ListenDatagram=0\.0\.0\.0.*$|ListenDatagram=0.0.0.0:$PORT|" "$SYSDSOCK" case "$1" in configure) if dpkg --compare-versions "$2" le "0.7.git20210202" ; then sed -i -e "s|only with init script|with systemd and init script|" $CONFIGFILE fi ;; esac # Automatically added by dh_installinit/13.24.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -z "$DPKG_ROOT" ] && [ -x "/etc/init.d/atftpd" ]; then update-rc.d atftpd defaults >/dev/null if [ -n "$2" ]; then _dh_action=restart else _dh_action=start fi invoke-rc.d --skip-systemd-native atftpd $_dh_action || exit 1 fi fi # End automatically added section # Automatically added by dh_installsystemd/13.24.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # The following line should be removed in trixie or trixie+1 deb-systemd-helper unmask 'atftpd.service' >/dev/null || true # was-enabled defaults to true, so new installations run enable. if deb-systemd-helper --quiet was-enabled 'atftpd.service'; then # Enables the unit on first installation, creates new # symlinks on upgrades if the unit file has changed. deb-systemd-helper enable 'atftpd.service' >/dev/null || true else # Update the statefile to add new symlinks (if any), which need to be # cleaned up on purge. Also remove old symlinks. deb-systemd-helper update-state 'atftpd.service' >/dev/null || true fi fi # End automatically added section # Automatically added by dh_installsystemd/13.24.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # The following line should be removed in trixie or trixie+1 deb-systemd-helper unmask 'atftpd.socket' >/dev/null || true # was-enabled defaults to true, so new installations run enable. if deb-systemd-helper --quiet was-enabled 'atftpd.socket'; then # Enables the unit on first installation, creates new # symlinks on upgrades if the unit file has changed. deb-systemd-helper enable 'atftpd.socket' >/dev/null || true else # Update the statefile to add new symlinks (if any), which need to be # cleaned up on purge. Also remove old symlinks. deb-systemd-helper update-state 'atftpd.socket' >/dev/null || true fi fi # End automatically added section # Automatically added by dh_installsystemd/13.24.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -d /run/systemd/system ]; then systemctl --system daemon-reload >/dev/null || true if [ -n "$2" ]; then _dh_action=restart else _dh_action=start fi deb-systemd-invoke $_dh_action 'atftpd.service' 'atftpd.socket' >/dev/null || true fi fi # End automatically added section