summaryrefslogtreecommitdiffstats
path: root/abs/extra/rsync/rsyncd
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2014-03-08 02:48:25 (GMT)
committerBritney Fransen <brfransen@gmail.com>2014-03-08 02:48:25 (GMT)
commit0a1907fccd5657aaaf6115d3025b81688d25e796 (patch)
tree8b777a987e09e717e22bea0a2501dd5c40280561 /abs/extra/rsync/rsyncd
parent557a78548b3fbd66c7a37dcc3ac74e7f5e3d330f (diff)
downloadlinhes_pkgbuild-0a1907fccd5657aaaf6115d3025b81688d25e796.zip
linhes_pkgbuild-0a1907fccd5657aaaf6115d3025b81688d25e796.tar.gz
linhes_pkgbuild-0a1907fccd5657aaaf6115d3025b81688d25e796.tar.bz2
rsync: update to 3.1.0
Diffstat (limited to 'abs/extra/rsync/rsyncd')
-rw-r--r--abs/extra/rsync/rsyncd37
1 files changed, 0 insertions, 37 deletions
diff --git a/abs/extra/rsync/rsyncd b/abs/extra/rsync/rsyncd
deleted file mode 100644
index 27836d5..0000000
--- a/abs/extra/rsync/rsyncd
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/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