From 56062a84cca360881bfa3bd2b2254d451223d775 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 3 Jun 2021 15:31:16 +0200 Subject: Add prep_smoke.sh hack script. --- hacks/prep_smoke.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hacks/prep_smoke.sh diff --git a/hacks/prep_smoke.sh b/hacks/prep_smoke.sh new file mode 100644 index 000000000..e0b823e9b --- /dev/null +++ b/hacks/prep_smoke.sh @@ -0,0 +1,14 @@ +DCP=$HOME/DCP/Examples/xm +KEY=$HOME/dcpomatic-infrastructure/keys/test-vm-id_rsa +targets="centos-7-64 centos-8-64 debian-9-64 debian-10-64 ubuntu-16.04-32 ubuntu-16.04-64 ubuntu-18.04-64 ubuntu-20.04-64 ubuntu-20.10-64 ubuntu-21.04-64 fedora-32-64 fedora-33-64 fedora-34-64" + +opts="-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i $KEY" + +for t in $targets; do + host=$(echo $t | sed "s/\./-/g") + ping -c 1 $host.local + if [ "$?" == "0" ]; then + scp $opts -r $DCP $host.local: + scp $opts -r $t/* $host.local: + fi +done -- cgit v1.2.3