mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-08 02:10:21 +00:00
13 lines
281 B
Plaintext
Executable File
13 lines
281 B
Plaintext
Executable File
# package install script
|
|
|
|
action=$1
|
|
newversion=$2
|
|
oldversion=$3
|
|
|
|
case $action in
|
|
post-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
|
|
;;
|
|
esac
|