diff options
author | Lukc <lukc@upyum.com> | 2010-12-11 19:15:23 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-11 19:15:35 +0100 |
commit | 6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch) | |
tree | b5e6da6d95b9a1235d82032b509b80483a886ff5 /rsync/rsyncd | |
download | base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2 base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip |
Engagement initial.
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 |