File: postrm

package info (click to toggle)
cron 3.0pl1-116
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 528 kB
  • ctags: 428
  • sloc: ansic: 4,090; perl: 713; sh: 274; makefile: 150
file content (12 lines) | stat: -rw-r--r-- 255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

# Conffile has become obsolete
dpkg-maintscript-helper rm_conffile /etc/cron.monthly/standard "3.0pl1-113" -- "$@"

if [ $1 = purge ]; then 
    update-rc.d cron remove >/dev/null
    rm -f /etc/cron.allow /etc/cron.deny
fi

#DEBHELPER#