File: ocserv.postrm

package info (click to toggle)
ocserv 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,924 kB
  • sloc: ansic: 49,159; sh: 12,767; makefile: 414; xml: 29
file content (14 lines) | stat: -rw-r--r-- 186 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

case "$1" in
    remove|purge)
        # remove chroot/socket directory upon removal
        rm -rf /var/lib/ocserv/run
        ;;
    *)
        ;;
esac

#DEBHELPER#