6 lines
146 B
Plaintext
6 lines
146 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
/usr/sbin/groupadd -g 83 _ntp
|
||
|
/usr/sbin/useradd -g _ntp -u 83 -c "NTP Daemon" -d /var/empty -s /bin/false _ntp
|
||
|
/usr/bin/passwd -l _ntp
|