diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-07-03 01:11:47 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-07-03 01:11:47 +0200 |
commit | 54019d11ef27549aaeacb461bf3cb706a1d3efa6 (patch) | |
tree | ebebc6239d823d38222b95f066d1a87d53250081 | |
parent | 2f9f483549dd06809d527e665a3cb34fb68043d2 (diff) | |
download | nutyx-pakxe-54019d11ef27549aaeacb461bf3cb706a1d3efa6.tar.gz nutyx-pakxe-54019d11ef27549aaeacb461bf3cb706a1d3efa6.tar.bz2 nutyx-pakxe-54019d11ef27549aaeacb461bf3cb706a1d3efa6.tar.xz nutyx-pakxe-54019d11ef27549aaeacb461bf3cb706a1d3efa6.zip |
rsync suppression fichiers obsolètes
-rw-r--r-- | extra/rsync-server/rsyncd | 51 | ||||
-rw-r--r-- | extra/rsync-server/rsyncd.conf | 13 |
2 files changed, 0 insertions, 64 deletions
diff --git a/extra/rsync-server/rsyncd b/extra/rsync-server/rsyncd deleted file mode 100644 index 211c419df..000000000 --- a/extra/rsync-server/rsyncd +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh -# Begin $rc_base/init.d/rsyncd - -# Based on sysklogd script from LFS-3.1 and earlier. -# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org - -#$LastChangedBy: randy $ -#$Date: 2005-11-21 14:46:15 -0600 (Mon, 21 Nov 2005) $ - -. /etc/sysconfig/rc -. $rc_functions -newgroup=rsyncd -newuser=rsyncd -newid=48 -getent group $newgroup > /dev/null || /usr/sbin/groupadd -g $newid $newgroup -getent passwd $newuser > /dev/null || /usr/sbin/useradd -c "rsyncd Daemon" -d /home/rsync \ --g $newgroup -s /bin/false -u $newid $newuser - -case "$1" in - start) - boot_mesg "Starting RSYNC Server..." - loadproc /usr/bin/rsync --daemon - ;; - - stop) - boot_mesg "Stopping RSYNC Server..." - killproc /usr/bin/rsync - ;; - - reload) - boot_mesg "Reloading RSYNC Server..." - reloadproc /usr/bin/rsync - ;; - - restart) - $0 stop - sleep 1 - $0 start - ;; - - status) - statusproc /usr/bin/rsync - ;; - - *) - echo "Usage: $0 {start|stop|reload|restart|status}" - exit 1 - ;; -esac - -# End $rc_base/init.d/rsyncd diff --git a/extra/rsync-server/rsyncd.conf b/extra/rsync-server/rsyncd.conf deleted file mode 100644 index ccd9d9d81..000000000 --- a/extra/rsync-server/rsyncd.conf +++ /dev/null @@ -1,13 +0,0 @@ -#This is a basic rsync configuration file -# It exports a single module without user authentication. - -motd file = /home/rsync/welcome.msg -use chroot = yes - -[localhost] - path = /home/rsync - comment = Default rsync module - read only = yes - list = yes - uid = rsyncd - gid = rsyncd |