diff options
Diffstat (limited to 'debian/rhnop-common.postrm')
-rwxr-xr-x | debian/rhnop-common.postrm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/rhnop-common.postrm b/debian/rhnop-common.postrm new file mode 100755 index 0000000..14f36ba --- /dev/null +++ b/debian/rhnop-common.postrm @@ -0,0 +1,13 @@ +#!/bin/sh +# postrm script for rhnop + +set -e + +if [ "$1" = "purge" ] ; then + if [ -x "$(command -v deluser)" -a -x "$(command -v delgroup)" ]; then + deluser --quiet --system rhnop || true + delgroup --quiet --system rhnop || true + else + echo "Not removing rhnop user and group: adduser package not found." >&2 + fi +fi |