cronie/debian/cronie.postrm
2021-08-09 15:08:55 +02:00

12 lines
110 B
Bash

#!/bin/sh
set -e
if [ "$1" = "purge" ]
then
rm -f /etc/cron.allow /etc/cron.deny
fi
#DEBHELPER#
exit 0