X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e73eed8563d21ef9ce83725cb09a3c2e14a40dbe..2d8f9b1df01e5919c8331f1eb84e80532252f72c:/testsuite/rsync.fns diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns index e5ae719f..ac7920da 100644 --- a/testsuite/rsync.fns +++ b/testsuite/rsync.fns @@ -234,6 +234,7 @@ build_rsyncd_conf() { pid file = $pidfile use chroot = no +munge symlinks = no hosts allow = localhost 127.0.0.0/24 192.168.0.0/16 10.0.0.0/8 $hostname log file = $logfile log format = %i %h [%a] %m (%u) %l %f%L @@ -255,6 +256,25 @@ gid = 0 path = $scratchdir read only = no EOF + + # Build a helper script to ignore exit code 23 + ignore23="$scratchdir/ignore23" + echo "building help script $ignore23" + + cat >"$ignore23" <<'EOT' +if "${@}"; then + exit +fi + +ret=$? + +if test $ret = 23; then + exit +fi + +exit $ret +EOT +chmod +x "$ignore23" }