File: postrm

package info (click to toggle)
udevil 0.4.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 3,396 kB
  • sloc: sh: 12,733; ansic: 6,018; makefile: 69
file content (15 lines) | stat: -rwxr-xr-x 208 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh
set -e

case "$1" in
    purge)
        rm -rf /etc/udevil
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0