From 19fcec84d8d7d21e796c7624e521b60d28ee21ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:45:59 +0200 Subject: Adding upstream version 16.2.11+ds. Signed-off-by: Daniel Baumann --- qa/qa_scripts/openstack/copy_func.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 qa/qa_scripts/openstack/copy_func.sh (limited to 'qa/qa_scripts/openstack/copy_func.sh') diff --git a/qa/qa_scripts/openstack/copy_func.sh b/qa/qa_scripts/openstack/copy_func.sh new file mode 100755 index 000000000..571980262 --- /dev/null +++ b/qa/qa_scripts/openstack/copy_func.sh @@ -0,0 +1,22 @@ +# +# copy_file(, , , [], [] +# +# copy a file -- this is needed because passwordless ssh does not +# work when sudo'ing. +# -- name of local file to be copied +# -- node where we want the file +# -- location where we want the file on +# -- (optional) permissions on the copied file +# -- (optional) owner of the copied file +# +function copy_file() { + fname=`basename ${1}` + scp ${1} ${2}:/tmp/${fname} + ssh ${2} sudo cp /tmp/${fname} ${3} + if [ $# -gt 3 ]; then + ssh ${2} sudo chmod ${4} ${3}/${fname} + fi + if [ $# -gt 4 ]; then + ssh ${2} sudo chown ${5} ${3}/${fname} + fi +} -- cgit v1.2.3