File: anacron.postrm

package info (click to toggle)
anacron 2.3-36
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 416 kB
  • sloc: ansic: 2,738; makefile: 126; sh: 65
file content (11 lines) | stat: -rw-r--r-- 168 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
# here for historical reasons
	rm -f /var/log/anacron /var/log/anacron.[0-9]*
	rm -rf /var/spool/anacron
fi

#DEBHELPER#