File: tcpcryptd.postrm

package info (click to toggle)
tcpcrypt 0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 5,292 kB
  • ctags: 1,747
  • sloc: ansic: 13,695; sh: 4,585; asm: 482; makefile: 168; objc: 149
file content (14 lines) | stat: -rw-r--r-- 252 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e

TCPCRYPT_USER=debian-tcpcryptd

case $1 in
    purge)
	# add a debian-tcpcryptd user if one does not already exist
	if getent passwd "$TCPCRYPT_USER" >/dev/null ; then
            deluser "$TCPCRYPT_USER"
	fi
        ;;
esac

#DEBHELPER#