Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.188.62.10
#!/bin/sh
## ----------------------------------------------------------------------
## debian/postrm: postremoval script for foo
## ----------------------------------------------------------------------
## ----------------------------------------------------------------------
## Abort if any command returns an error value
set -e
## --------------------------------------------------------------
## Remove package XML catalog file
if [ "$1" = "purge" ]
then
rm -f /etc/xml/foo.xml
rm -f /etc/xml/foo.xml.old
fi
## ----------------------------------------------------------------------
## Automatically added sections
#DEBHELPER#
exit 0
## ----------------------------------------------------------------------
|