mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-05 08:28:03 +00:00
5 lines
181 B
Plaintext
Executable File
5 lines
181 B
Plaintext
Executable File
pre_install() {
|
|
getent group sshd >/dev/null || groupadd -g 50 sshd
|
|
getent passwd sshd >/dev/null || useradd -c "sshd PrivSep" -d /var/lib/sshd -g sshd -s /bin/false -u 50 sshd
|
|
}
|