We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd43db1 commit c0d7b01Copy full SHA for c0d7b01
ubuntu.sh
@@ -14,7 +14,11 @@ set -e
14
PUPPET_COLLECTION="-${PUPPET_COLLECTION}"
15
[[ "${PUPPET_COLLECTION}" == "" ]] && PINST="puppet" || PINST="puppet-agent"
16
17
-REPO_DEB_URL="http://apt.puppetlabs.com/puppetlabs-release${PUPPET_COLLECTION}-${DISTRIB_CODENAME}.deb"
+if [[ "${DISTRIB_CODENAME}" == 'bionic' ]]; then
18
+ REPO_DEB_URL="http://apt.puppetlabs.com/puppet${PUPPET_VERSION}-release-${DISTRIB_CODENAME}.deb"
19
+else
20
+ REPO_DEB_URL="http://apt.puppetlabs.com/puppetlabs-release${PUPPET_COLLECTION}-${DISTRIB_CODENAME}.deb"
21
+fi
22
23
#--------------------------------------------------------------------
24
# NO TUNABLES BELOW THIS POINT
0 commit comments