mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-02-03 13:19:10 +01:00
7 lines
187 B
Bash
7 lines
187 B
Bash
#!/bin/sh
|
|
getent group scm >/dev/null || groupadd -r scm
|
|
getent passwd scm >/dev/null || \
|
|
useradd -r -g scm -M -s /sbin/nologin \
|
|
-c "user for the scm-server process" scm
|
|
exit 0
|