From da2f6457cec4a2a73a92b65de102e3cf1504afc8 Mon Sep 17 00:00:00 2001 From: Tony Breeds Date: Thu, 23 Aug 2018 14:55:08 +1000 Subject: [PATCH] Install the puppetlabs puppet package in Ica34b7525bab53f8a6d161401f7fb9a2dbe37bc3 we added support for installing puppet5 on bionic nodes. However we missed adding the package name. Which results in the expansion[1]: apt-get --option Dpkg::Options::=--force-confold --assume-yes install -y --force-yes git rubygems and later puppet isn't installed[2]: Failed to stop puppet.service: Unit puppet.service not loaded. Adding the pkg name gets us[3] [1] http://logs.openstack.org/41/588441/1/check/build-wheel-mirror-ubuntu-bionic/b3fd7ef/job-output.txt.gz#_2018-08-22_23_42_42_196476 [2] http://logs.openstack.org/41/588441/1/check/build-wheel-mirror-ubuntu-bionic/b3fd7ef/job-output.txt.gz#_2018-08-22_23_42_46_453880 [3] http://paste.openstack.org/raw/728653/ Change-Id: Icbcf5268624a5ff75e0058f8a355881125cd5d79 --- install_puppet.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install_puppet.sh b/install_puppet.sh index f4bd6e445b..48c34b3b31 100755 --- a/install_puppet.sh +++ b/install_puppet.sh @@ -221,6 +221,7 @@ function setup_puppet_ubuntu { FACTER_VERSION=3.* elif [ "$PUPPET_VERSION" == "5" ] ; then puppet_deb=puppet5-release-bionic.deb + puppetpkg=puppet-agent PUPPET_VERSION=5.* FACTER_VERSION=3.* else