File: postrm

package info (click to toggle)
doc-base 0.10.4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 552 kB
  • sloc: perl: 1,793; makefile: 204; sh: 99
file content (12 lines) | stat: -rw-r--r-- 123 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# postrm for doc-base

set -e

if [ "$1" = "remove" ]; then
    rm -rf /var/lib/doc-base
fi

#DEBHELPER#

exit 0