9 lines
122 B
Bash
Executable File
9 lines
122 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if getent group nmr; then
|
|
echo "group nmr exists alread, doing nothing"
|
|
else
|
|
addgroup --system nmr
|
|
fi
|