From: Peter Palfrader Date: Sat, 14 Sep 2019 13:24:29 +0000 (+0200) Subject: staticsync-ssh-wrap: drop wheezy compatible rsync call in allowed list X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=9d261388dbd96b4d73754030e41115f74983d26f;p=mirror%2Fdsa-puppet.git staticsync-ssh-wrap: drop wheezy compatible rsync call in allowed list --- diff --git a/modules/staticsync/files/staticsync-ssh-wrap b/modules/staticsync/files/staticsync-ssh-wrap index 959b4f8f0..ec51c038d 100755 --- a/modules/staticsync/files/staticsync-ssh-wrap +++ b/modules/staticsync/files/staticsync-ssh-wrap @@ -82,7 +82,6 @@ do_rsync_on_master() { local remote_host="$1"; shift local allowed_rsyncs allowed_rsyncs=() - allowed_rsyncs+=("--server --sender -vlHtrze.iLsf --safe-links .") # wheezy allowed_rsyncs+=("--server --sender -vlHtrze.iLsfx --safe-links .") # jessie allowed_rsyncs+=("--server --sender -vlHtrze.iLsfxC --safe-links .") # stretch @@ -122,7 +121,6 @@ do_rsync_on_source() { if [ -e "$COMPONENTLIST" ]; then for path in $(awk -v host="$(hostname -f)" '!/^ *(#|$)/ && $3 == host {print $4}' $COMPONENTLIST); do - allowed_rsyncs+=("--server --sender -lHtrze.iLsf --safe-links . $path/.") # wheezy allowed_rsyncs+=("--server --sender -lHtrze.iLsfx --safe-links . $path/.") # jessie allowed_rsyncs+=("--server --sender -lHtrze.iLsfxC --safe-links . $path/.") # stretch done