From f749f58af1b8076d3d99b62b52a856ecb751376d Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Thu, 3 Jan 2013 13:29:13 -0500 Subject: [PATCH] remove apt-get cmds from install_modules.sh Updates install_modules so that we no longer try to install puppet via apt-get here. This seems reasonable since we already installed puppet 2.7 (which has 'module' support) in the install_jenkins_slave.sh script. The motivation for this change is to support multiple linux distributions within openstack-infra and be able to run this script on Red Hat linux distributions as well. Change-Id: I1907624d1f934b832216261edf0acd87bfcc4bd2 Reviewed-on: https://review.openstack.org/18903 Reviewed-by: James E. Blair Reviewed-by: Monty Taylor Reviewed-by: Clark Boylan Reviewed-by: Paul Belanger Approved: James E. Blair Tested-by: Jenkins --- install_modules.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/install_modules.sh b/install_modules.sh index b0f0c984e0..d8d1c83308 100755 --- a/install_modules.sh +++ b/install_modules.sh @@ -22,11 +22,6 @@ function clone_git() { cd $OLDDIR } -if ! puppet help module >/dev/null 2>&1 -then - apt-get install -y -o Dpkg::Options::="--force-confold" puppet facter -fi - # Array of modules to be installed key:value is module:version. declare -A MODULES MODULES["kickstandproject-ntp"]="0.0.3"