mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
Note that >=gemato-20.15 is needed for verify-sig to pass here (bug #983021). Changes: * Fix the logrotate config to be less opinionated (bug #549852). * Fix LICENSE (bug #912728). * Use /run in init script (bug #685318). * Add systemd socket file for systemd (bug #601792). Bug: https://bugs.gentoo.org/980780 Bug: https://bugs.gentoo.org/980782 Bug: https://bugs.gentoo.org/983021 Closes: https://bugs.gentoo.org/549852 Closes: https://bugs.gentoo.org/601792 Closes: https://bugs.gentoo.org/685318 Closes: https://bugs.gentoo.org/912728 Closes: https://bugs.gentoo.org/980789 Signed-off-by: Sam James <sam@gentoo.org>
12 lines
240 B
Plaintext
12 lines
240 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
command="/usr/bin/rsync"
|
|
command_args="--daemon ${RSYNC_OPTS}"
|
|
pidfile="/run/${SVCNAME}.pid"
|
|
|
|
depend() {
|
|
use net
|
|
}
|