damaris-backends/debian/damaris-modules.postinst

9 lines
179 B
Bash
Executable File

#! /bin/sh -e
if grep -q nmr /etc/group; then
#DEBHELPER#
echo "group nmr already exists" ;
else
echo "creating group nmr" ;
groupadd nmr || echo "failed!"
fi