File: mon.postrm

package info (click to toggle)
mon 1.2.0-9
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,860 kB
  • ctags: 538
  • sloc: perl: 15,847; ansic: 774; sh: 330; makefile: 46
file content (24 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
#
# Author: Dario Minnucci <midget@debian.org>
# Date:   Fri, 29 Jun 2007 00:28:43 +0200
#         Delete 'mon' user on purge step.
#

set -e

#echo "----------------------------------------------"
#echo " debian/postrm: $1"
#echo "----------------------------------------------"

case "$1" in
    purge)
        # Remove 'mon' user
        echo -n "Removing user 'mon' ... "
		userdel mon
		echo "done."
    ;;
esac

#DEBHELPER#