diff options
author | James Meyer <james.meyer@operamail.com> | 2012-08-07 20:47:16 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-08-07 20:47:16 (GMT) |
commit | 86c8c6ce49e4d7e19e372655f8ba34463a6971d1 (patch) | |
tree | f7545c086530d733f64215d3af374f17fcdcf132 /abs/extra/rsync/rsyncd | |
parent | 4fb8f045fa01f28e5b31c3b821145365f5710e36 (diff) | |
download | linhes_pkgbuild-86c8c6ce49e4d7e19e372655f8ba34463a6971d1.zip linhes_pkgbuild-86c8c6ce49e4d7e19e372655f8ba34463a6971d1.tar.gz linhes_pkgbuild-86c8c6ce49e4d7e19e372655f8ba34463a6971d1.tar.bz2 |
rysnc 3.0.9
Diffstat (limited to 'abs/extra/rsync/rsyncd')
-rw-r--r-- | abs/extra/rsync/rsyncd | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/abs/extra/rsync/rsyncd b/abs/extra/rsync/rsyncd new file mode 100644 index 0000000..27836d5 --- /dev/null +++ b/abs/extra/rsync/rsyncd @@ -0,0 +1,37 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +[ -f /etc/conf.d/rsyncd ] && . /etc/conf.d/rsyncd + +case "$1" in + start) + stat_busy "Starting rsyncd" + [ ! -f /run/daemons/rsyncd ] && /usr/bin/rsync --daemon $RSYNCD_ARGS + if [ $? -gt 0 ]; then + stat_fail + else + add_daemon rsyncd + stat_done + fi + ;; + stop) + stat_busy "Stopping rsyncd" + [ -f /run/rsyncd.pid ] && kill `cat /run/rsyncd.pid` + if [ $? -gt 0 ]; then + stat_fail + else + rm_daemon rsyncd + stat_done + fi + ;; + restart) + $0 stop + sleep 1 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart}" +esac +exit 0 |