cronie/debian/cronie.postrm

12 lines
110 B
Plaintext
Raw Permalink Normal View History

2019-11-05 08:04:37 +01:00
#!/bin/sh
set -e
if [ "$1" = "purge" ]
then
rm -f /etc/cron.allow /etc/cron.deny
fi
#DEBHELPER#
exit 0