X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/2ae4126a9e878cd99d154f0c0b8968f70b45bbdc..d1798a2fda20876febfecdc035510a0dd9875761:/testsuite/rsync.fns diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns index 7d73f0c1..5c35004b 100644 --- a/testsuite/rsync.fns +++ b/testsuite/rsync.fns @@ -66,7 +66,7 @@ printmsg() { } rsync_ls_lR() { - find "$@" -print | sort | sed 's/ /\\ /g' | xargs "$TOOLDIR/tls" + find "$@" -print | sort | sed 's/ /\\ /g' | xargs "$TOOLDIR/tls" $TLS_ARGS } check_perms() { @@ -145,16 +145,16 @@ hands_setup() { # Many machines do not have "mkdir -p", so we have to build up long paths. # How boring. makepath() { - echo " makepath $1" - p="$1" - ( + for p in "${@}"; do + (echo " makepath $p" + # Absolut Unix. if echo $p | grep '^/' >/dev/null then cd / fi - # This will break if $1 contains a space. + # This will break if $p contains a space. for c in `echo $p | tr '/' ' '` do if [ -d "$c" ] || mkdir "$c" @@ -163,8 +163,8 @@ makepath() { else echo "failed to create $c" >&2; return $? fi - done - ) + done) + done } @@ -224,13 +224,14 @@ build_rsyncd_conf() { port=2612 pidfile="$scratchdir/rsyncd.pid" logfile="$scratchdir/rsyncd.log" + hostname=`uname -n` cat >"$conf" <