diff --git a/nodepool/elements/cache-devstack/install.d/50-download-pkgs b/nodepool/elements/cache-devstack/install.d/50-download-pkgs index b477955553..2768a65d6e 100755 --- a/nodepool/elements/cache-devstack/install.d/50-download-pkgs +++ b/nodepool/elements/cache-devstack/install.d/50-download-pkgs @@ -20,7 +20,8 @@ set -e while read line ; do if [ -f /usr/bin/apt-get ] ; then - apt-get -y -d install $line + # --ignore-missing conflicts with set -e, so force it to be ok + apt-get -y --ignore-missing -d install $line || true else yum install -y --downloadonly $line fi