damaris-backends/debian/damaris-backends.postrm

14 lines
262 B
Bash
Executable File

#! /bin/sh
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#