summaryrefslogtreecommitdiffstats
path: root/rsync/rsyncd
diff options
context:
space:
mode:
Diffstat (limited to 'rsync/rsyncd')
-rw-r--r--rsync/rsyncd23
1 files changed, 0 insertions, 23 deletions
diff --git a/rsync/rsyncd b/rsync/rsyncd
deleted file mode 100644
index 8507211..0000000
--- a/rsync/rsyncd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# /etc/rc.d/rsyncd: start/stop rsyncd daemon
-#
-
-case $1 in
-start)
- /usr/bin/rsync --daemon
- ;;
-stop)
- kill `cat /var/run/rsyncd.pid`
- ;;
-restart)
- $0 stop
- sleep 2
- $0 start
- ;;
-*)
- echo "usage: $0 [start|stop|restart]"
- ;;
-esac
-
-# End of file