summaryrefslogtreecommitdiffstats
path: root/bin/lvc.sh
diff options
context:
space:
mode:
authorPhilip Hands <phil@hands.com>2016-06-05 10:42:37 +0200
committerPhilip Hands <phil@hands.com>2016-06-05 11:05:38 +0200
commitc606484102b4ea7b0dcee18cceaa2aaa93e1143f (patch)
tree95e3c0dd2540d9c2ad6523738648c814a5f506fb /bin/lvc.sh
parentad1993dbb55855538d37ca0c077e8cb684038bdd (diff)
downloadjenkins.debian.net-c606484102b4ea7b0dcee18cceaa2aaa93e1143f.tar.xz
lvc: only check snapshots against files that exist on builder
Diffstat (limited to 'bin/lvc.sh')
-rwxr-xr-xbin/lvc.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/lvc.sh b/bin/lvc.sh
index 5f7bebae..8f0a3d6f 100755
--- a/bin/lvc.sh
+++ b/bin/lvc.sh
@@ -68,7 +68,12 @@ mkdir -p $RESULTS
mkdir -p $WORKSPACE/DebianToasterStorage
-discard_snapshots $LIBVIRT_DOMAIN_NAME /srv/jenkins/cucumber /srv/jenkins/bin/lvc.sh /srv/jenkins/job-cfg/lvc.yaml $NETBOOT
+for dep in /srv/jenkins/cucumber /srv/jenkins/bin/lvc.sh /srv/jenkins/job-cfg/lvc.yaml $NETBOOT ; do
+ if [ -e "$dep" ] ; then
+ LV_SNAP_DEPENDS="$LV_SNAP_DEPENDS $dep"
+ fi
+done
+discard_snapshots $LIBVIRT_DOMAIN_NAME $LV_SNAP_DEPENDS
trap cleanup_all INT TERM EXIT