summaryrefslogtreecommitdiffstats
path: root/rsync/rsyncd
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 04:42:57 +0100
committerLukc <lukc@upyum.com>2010-12-12 04:42:57 +0100
commit71e521c65d470f82051c5d39f7f298c3103c2c18 (patch)
treeae0cd3a2b590738e1fd706ecdd51171808d3fe29 /rsync/rsyncd
parent8549ec3c24835c9951dd0b4becae692799460446 (diff)
downloadbase-71e521c65d470f82051c5d39f7f298c3103c2c18.tar.gz
base-71e521c65d470f82051c5d39f7f298c3103c2c18.tar.bz2
base-71e521c65d470f82051c5d39f7f298c3103c2c18.tar.xz
base-71e521c65d470f82051c5d39f7f298c3103c2c18.zip
Recette de rsync retirée.
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