summaryrefslogtreecommitdiff
path: root/postrm-runit
blob: 9556830454535ebecc21e6e2e84faed6603c6ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh # just to convince emacs that it is shell script

if [ "$1" = 'purge' ] ; then
    # If runscript was never invoked, these files would not exist,
    # so we use -f option of rm(1).
   for file in control lock ok pid stat status ; do
       rm -f "/var/lib/runit/supervise/#NAME#/$file"
   done
   # It should exist and be empty now. If it is not, either user touched it,
   # or there is a BUG in dh-runit!
   rmdir "/var/lib/runit/supervise/#NAME#"
fi