mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-05 00:26:01 +00:00
5 lines
190 B
Plaintext
Executable File
5 lines
190 B
Plaintext
Executable File
pre_install() {
|
|
getent group rsyncd >/dev/null || groupadd -g 48 rsyncd
|
|
getent passwd rsyncd >/dev/null || useradd -c "rsyncd Daemon" -d /home/rsync -g rsyncd -s /bin/false -u 48 rsyncd
|
|
}
|