From 65db28314b5c103fd07366d9cd45eeffd69b8f0c Mon Sep 17 00:00:00 2001 From: Alessandro Grassi Date: Fri, 27 Oct 2017 14:29:02 +0200 Subject: [PATCH] Fix REPO_DEB_URL in debian.sh Signed-off-by: Alessandro Grassi --- debian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian.sh b/debian.sh index a11daf3..7595997 100755 --- a/debian.sh +++ b/debian.sh @@ -14,7 +14,7 @@ which lsb_release || apt-get --yes install lsb-release # Load up the release information DISTRIB_CODENAME=$(lsb_release -c -s) -REPO_DEB_URL="http://apt.puppetlabs.com/puppetlabs-release-${DISTRIB_CODENAME}.deb" +REPO_DEB_URL="http://apt.puppetlabs.com/puppet-release-${DISTRIB_CODENAME}.deb" #-------------------------------------------------------------------- # NO TUNABLES BELOW THIS POINT