File: postrm

package info (click to toggle)
qmail 1.02-1
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 2,268 kB
  • ctags: 1,721
  • sloc: ansic: 14,071; makefile: 1,923; sh: 583; perl: 452
file content (18 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl

$| = 1;

$action = shift @ARGV;

if ( $action eq 'purge' ) {
    system('update-rc.d qmail remove >/dev/null');
    system("rm -rf /var/qmail");
    system("rm -rf /etc/qmail");
    exit $?;
}

if ( $action eq 'abort-install' ) {
    # Put back old inetd.conf (?)
    exit 0
}