diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 04:47:45 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 04:47:45 +0100 |
commit | f3d2975053ac056d84e872af7498a51d3d81fbd2 (patch) | |
tree | 66156d51cf44f30e7322f453e01134dddba10ca9 /rsync/rsyncd | |
parent | c42d52ef73123d38394acaa646ff82d0e5aff6a9 (diff) | |
download | opt-f3d2975053ac056d84e872af7498a51d3d81fbd2.tar.gz opt-f3d2975053ac056d84e872af7498a51d3d81fbd2.tar.bz2 opt-f3d2975053ac056d84e872af7498a51d3d81fbd2.tar.xz opt-f3d2975053ac056d84e872af7498a51d3d81fbd2.zip |
Recette de rsync ajoutée.
Diffstat (limited to 'rsync/rsyncd')
-rw-r--r-- | rsync/rsyncd | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/rsync/rsyncd b/rsync/rsyncd new file mode 100644 index 0000000..8507211 --- /dev/null +++ b/rsync/rsyncd @@ -0,0 +1,23 @@ +#!/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 |