7cb63bc48d
The default user and group is 'ntp'. Please rename the old user and group (_ntp). Adopted the port from Brett.
6 lines
114 B
Bash
Executable File
6 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
|
|
/usr/sbin/groupadd ntp
|
|
/usr/sbin/useradd -g ntp -d /var/empty -s /bin/false ntp
|
|
/usr/bin/passwd -l ntp
|