#!/bin/sh -e case "$1" in purge) rm -f /etc/default/uftp ;; esac # Automatically added by dh_installinit/13.14.1 if [ "$1" = "remove" ] && [ -x "/etc/init.d/uftp" ] ; then chmod -x "/etc/init.d/uftp" >/dev/null || true fi if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = "purge" ] ; then update-rc.d uftp remove >/dev/null fi # End automatically added section # Automatically added by dh_systemd_enable/13.14.1 if [ "$1" = "purge" ]; then if [ -x "/usr/bin/deb-systemd-helper" ]; then deb-systemd-helper purge 'uftp.service' >/dev/null || true fi fi # End automatically added section # Automatically added by dh_installdebconf/13.14.1 if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule db_purge fi # End automatically added section exit 0