damaris-backends/debian/damaris-backends.postrm

14 lines
265 B
Plaintext
Raw Normal View History

#! /bin/sh -e
if test x$1 = xpurge; then
if grep nmr /etc/group >/dev/null; then
echo "deleting group nmr" ;
# be sure this does not stop the process
groupdel nmr || true
else
echo "group nmr already removed" ;
fi
fi
#DEBHELPER#