summaryrefslogtreecommitdiff
path: root/tests.deploy/deploy-cluster.script
diff options
context:
space:
mode:
Diffstat (limited to 'tests.deploy/deploy-cluster.script')
-rwxr-xr-xtests.deploy/deploy-cluster.script12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests.deploy/deploy-cluster.script b/tests.deploy/deploy-cluster.script
index 917ac717..0efc8d3c 100755
--- a/tests.deploy/deploy-cluster.script
+++ b/tests.deploy/deploy-cluster.script
@@ -18,7 +18,6 @@
# Test "morph deploy" by deploying the systems in cluster morphology.
-
set -eu
@@ -35,12 +34,13 @@ cd "$DATADIR/workspace/branch1"
linux-system-2.HOSTNAME="baserock-rocks-even-more" \
> /dev/null
-test -e hello-system.img
-test -e linux-system-1.tar
-test -e linux-system-2.tar
+outputdir=test:morphs
+test -e $outputdir/hello-system.img
+test -e $outputdir/linux-system-1.tar
+test -e $outputdir/linux-system-2.tar
-hostname1=$(tar -xf linux-system-1.tar ./etc/hostname -O)
-hostname2=$(tar -xf linux-system-2.tar ./etc/hostname -O)
+hostname1=$(tar -xf $outputdir/linux-system-1.tar ./etc/hostname -O)
+hostname2=$(tar -xf $outputdir/linux-system-2.tar ./etc/hostname -O)
[ "$hostname1" = baserock-rocks ]
[ "$hostname2" = baserock-rocks-even-more ]