X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/3aae15ecfba78001055a547f79f801ccdbc17158..4a7cb3e8a82c5b641ef4344a41af33847922f4c2:/testsuite/rsync.fns diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns index 8452853e..a80a96cb 100644 --- a/testsuite/rsync.fns +++ b/testsuite/rsync.fns @@ -101,7 +101,7 @@ checkforlogs() { } -function build_rsyncd_conf { +build_rsyncd_conf() { # Build an appropriate configuration file conf="$scratchdir/test-rsyncd.conf" echo "building configuration $conf" @@ -127,19 +127,3 @@ EOF } - -function start_rsyncd { - echo starting daemon - $rsync_bin --daemon --port $port --config $conf - sleep 2 - pid=`cat "$pidfile"` - echo rsyncd running as process $pid - - - # We need to make sure that we always kill rsync, even if there's an - # error. Otherwise it might hang around, and be insecure or at any - # rate keep the port bound and prevent the tests running in the - # future. - - trap "echo killing off process $pid; kill $pid" EXIT -}