From 7a5186cfc3af307c4c0d1369b6e6cc1e0e9181be Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Mon, 30 Jun 2014 13:05:42 +1000 Subject: [PATCH] Initial RHEL7/Centos7 support Install the right EPEL and puppet rpm's for RHEL7/Centos7. I have tested this on one of the CentOS nightly builds and run_puppet.sh, install_modules.sh and a puppet apply of openstack_project::single_use_slave works as expected Change-Id: I80024d1afdb4e40d5fe9793ab2ec443b887c5fa8 --- install_puppet.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/install_puppet.sh b/install_puppet.sh index 9689503c73..ee0031ea0a 100755 --- a/install_puppet.sh +++ b/install_puppet.sh @@ -44,6 +44,12 @@ function is_rhel6 { cat /etc/*release | grep -q 'release 6' } +function is_rhel7 { + [ -f /usr/bin/yum ] && \ + cat /etc/*release | grep -q -e "Red Hat" -e "CentOS" && \ + cat /etc/*release | grep -q 'release 7' +} + function is_ubuntu { [ -f /usr/bin/apt-get ] } @@ -76,6 +82,23 @@ function setup_puppet_fedora { ln -s /usr/bin/pip /usr/bin/pip-python } +function setup_puppet_rhel7 { + + local epel_pkg="http://dl.fedoraproject.org/pub/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm" + local puppet_pkg="https://yum.puppetlabs.com/el/7/products/x86_64/puppetlabs-release-7-10.noarch.rpm" + + # install EPEL + rpm -qi epel-release &> /dev/null || rpm -Uvh $epel_pkg + + # NOTE: we preinstall lsb_release to ensure facter sets lsbdistcodename + yum install -y redhat-lsb-core git puppet + + rpm -ivh $puppet_pkg + + # see comments in setup_puppet_fedora + ln -s /usr/bin/pip /usr/bin/pip-python +} + function setup_puppet_rhel6 { local epel_pkg="http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm" local puppet_pkg="http://yum.puppetlabs.com/el/6/products/x86_64/puppetlabs-release-6-6.noarch.rpm" @@ -191,6 +214,8 @@ if is_fedora; then setup_puppet_fedora elif is_rhel6; then setup_puppet_rhel6 +elif is_rhel7; then + setup_puppet_rhel7 elif is_ubuntu; then setup_puppet_ubuntu else