|
|
|
#!/bin/sh # $Id: postrm,v 1.2 2003-05-18 12:11:49 robert Exp $ set -e W2L="welcome2l" # Remove /etc/issue.welcome2l if [ "$1" = remove ] || [ "$1" = purge ]; then rm -f /etc/issue."$W2L" fi # Automatically added by dh_installinit if [ "$1" = "purge" ] ; then update-rc.d welcome2l remove >/dev/null || exit $? fi # End automatically added section
| Results 1 - 1 |