From 3ff604622891dcb8d9ca3cc3decc52dc5a77458d Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Sun, 9 Mar 2014 17:20:55 -0300 Subject: [PATCH] boxes: Skip puppet installation on Ubuntu Trusty as it is not supported ATM --- boxes/debian/install-extras.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/boxes/debian/install-extras.sh b/boxes/debian/install-extras.sh index 75a1147..5a9aabc 100755 --- a/boxes/debian/install-extras.sh +++ b/boxes/debian/install-extras.sh @@ -39,6 +39,8 @@ fi if [ $PUPPET = 1 ]; then if $(lxc-attach -n ${CONTAINER} -- which puppet &>/dev/null); then log "Puppet has been installed on container, skipping" + elif [ ${RELEASE} = 'trusty' ]; then + warn "Puppet can't be installed on Ubuntu Trusty 14.04, skipping" else log "Installing Puppet" wget http://apt.puppetlabs.com/puppetlabs-release-stable.deb -O "${ROOTFS}/tmp/puppetlabs-release-stable.deb"