From fbe1dbe6119d0ef7e9993f9722b4952e96cf415f Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Thu, 24 Jul 2014 09:50:41 -0700 Subject: [PATCH] Update version of puppetlabs-stdlib in install_modules.sh Without this patch, install_modules.sh will attempt to install puppetlabs-stdlib 3.2.0 and fail because puppetlabs-concat installs puppetlabs-stdlib > 4. This is a problem because it causes inconsistency between the version listed in install_modules.sh and the actual installed version, and it causes errors during subsequent runs of the shell script. This patch resolves the problem by updating the version listed in install_modules.sh to the latest version. Closes-Bug: 1324645 Change-Id: I7822597785946330346c476753ff60ae1b345014 --- install_modules.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_modules.sh b/install_modules.sh index 6f687a243b..ce00787a50 100755 --- a/install_modules.sh +++ b/install_modules.sh @@ -46,7 +46,7 @@ MODULES["puppetlabs-apt"]="1.1.0" MODULES["puppetlabs-haproxy"]="0.4.1" MODULES["puppetlabs-mysql"]="0.6.1" MODULES["puppetlabs-postgresql"]="3.4.1" -MODULES["puppetlabs-stdlib"]="3.2.0" +MODULES["puppetlabs-stdlib"]="4.3.2" MODULES["saz-memcached"]="2.0.2" MODULES["spiette-selinux"]="0.5.1" MODULES["rafaelfc-pear"]="1.0.3"