14 lines
265 B
Bash
Executable File
14 lines
265 B
Bash
Executable File
#! /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#
|