7 lines
191 B
Bash
7 lines
191 B
Bash
#!/bin/sh
|
|
|
|
getent group chrony || /usr/sbin/groupadd -g 55 chrony
|
|
getent passwd chrony || /usr/sbin/useradd -g chrony -u 55 -d /var/lib/chrony -s /bin/false chrony
|
|
/usr/bin/passwd -l chrony
|
|
|