diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-05-12 20:06:58 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-05-12 20:06:58 +0000 |
commit | 231be8df87e1934d5d138e7460d1bb7347a2cd42 (patch) | |
tree | fbd163c97f1d39ee2a7cc6b53125024db3222e50 /testing/scripts/restore-defaults | |
parent | 0fc1fc0ec83161c777eb6680903b41a6727e7c5a (diff) | |
download | strongswan-231be8df87e1934d5d138e7460d1bb7347a2cd42.tar.bz2 strongswan-231be8df87e1934d5d138e7460d1bb7347a2cd42.tar.xz |
do not preserve ownership of copied files
Diffstat (limited to 'testing/scripts/restore-defaults')
-rwxr-xr-x | testing/scripts/restore-defaults | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/scripts/restore-defaults b/testing/scripts/restore-defaults index 4bb81d19e..06d1eeb67 100755 --- a/testing/scripts/restore-defaults +++ b/testing/scripts/restore-defaults @@ -48,6 +48,6 @@ then for host in `ls $TESTSDIR/${testname}/hosts` do eval HOSTLOGIN="root@`echo $HOSTNAMEIPV4 | sed -n -e "s/^.*${host},//gp" | awk -F, '{ print $1 }' | awk '{ print $1 }'`" - scp -rp $HOSTCONFIGDIR/${host}/etc $HOSTLOGIN:/ > /dev/null 2>&1 + scp -r $HOSTCONFIGDIR/${host}/etc $HOSTLOGIN:/ > /dev/null 2>&1 done fi |