From: Adam Israel Date: Thu, 17 May 2018 13:18:21 +0000 (-0400) Subject: Speed up LXD precache X-Git-Tag: v4.0.0~5 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F67%2F6167%2F2;p=osm%2Fdevops.git Speed up LXD precache Speed up the caching of LXD images used by the installer and daily cron by removing the trusty image, which is no longer used by default. Signed-off-by: Adam Israel --- diff --git a/jenkins/VCA/update-lxd-image.sh b/jenkins/VCA/update-lxd-image.sh index 81b210c8..8cad93b8 100755 --- a/jenkins/VCA/update-lxd-image.sh +++ b/jenkins/VCA/update-lxd-image.sh @@ -51,5 +51,6 @@ function cache() { lxc delete $container -f || true } -cache trusty "$TRUSTY_PACKAGES" +# Cache the image for the Ubuntu series or series to support +# cache trusty "$TRUSTY_PACKAGES" cache xenial "$XENIAL_PACKAGES"