
The redhat-lsb-core package won't apparently be split out until RHEL 6.4 at the earliest: https://bugzilla.redhat.com/show_bug.cgi?id=835919 Change-Id: I4bc9bb542e68db26744b834a6de7d99b2249c568 Reviewed-on: https://review.openstack.org/23124 Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Approved: James E. Blair <corvus@inaugust.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
54 lines
2.2 KiB
Bash
Executable File
54 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2013 OpenStack Foundation.
|
|
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
# Copyright 2013 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# Install puppet version 2.7.x from puppetlabs.
|
|
# The repo and preferences files are also managed by puppet, so be sure
|
|
# to keep them in sync with this file.
|
|
|
|
if cat /etc/*release | grep "Red Hat" &> /dev/null; then
|
|
rpm -qi epel-release &> /dev/null || rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
|
|
rpm -ivh http://yum.puppetlabs.com/el/6/products/x86_64/puppetlabs-release-6-6.noarch.rpm
|
|
yum update -y
|
|
# NOTE: enable the optional-rpms channel (if not already enabled)
|
|
# yum-config-manager --enable rhel-6-server-optional-rpms
|
|
|
|
# NOTE: we preinstall lsb_release to ensure facter sets lsbdistcodename,
|
|
# unfortunately this means redhat-lsb at least until 6.4:
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=835919
|
|
yum install -y redhat-lsb git puppet-2.7.20-1.el6.noarch
|
|
else
|
|
#defaults to Ubuntu
|
|
cat > /etc/apt/preferences.d/00-puppet.pref <<EOF
|
|
Package: puppet puppet-common puppetmaster puppetmaster-common
|
|
Pin: version 2.7*
|
|
Pin-Priority: 501
|
|
EOF
|
|
|
|
lsbdistcodename=`lsb_release -c -s`
|
|
puppet_deb=puppetlabs-release-${lsbdistcodename}.deb
|
|
wget http://apt.puppetlabs.com/$puppet_deb -O $puppet_deb
|
|
dpkg -i $puppet_deb
|
|
rm $puppet_deb
|
|
|
|
apt-get update
|
|
DEBIAN_FRONTEND=noninteractive apt-get --option 'Dpkg::Options::=--force-confold' \
|
|
--assume-yes upgrade
|
|
DEBIAN_FRONTEND=noninteractive apt-get --option 'Dpkg::Options::=--force-confold' \
|
|
--assume-yes install -y --force-yes puppet git rubygems
|
|
fi
|