Do not rely on openstack-puppet-modules

We are removing openstack-puppet-modules package since we now have
individual packages for each Puppet module.
We can still rely on puppet-tripleo module to deploy all dependencies.

Change-Id: I5ec13e8db5ae5422da9cb8a59c69c9c6c8f34622
Related-Bug: #1676998
This commit is contained in:
Emilien Macchi 2017-10-17 11:13:03 -07:00
parent e3a80b18e0
commit 29f32c4c2c
3 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ set -eux
yum install -y \ yum install -y \
jq \ jq \
python-ipaddr \ python-ipaddr \
openstack-puppet-modules \ puppet-tripleo \
os-net-config \ os-net-config \
openvswitch \ openvswitch \
python-heat-agent* \ python-heat-agent* \

View File

@ -5,7 +5,7 @@ set -eux
yum install -y \ yum install -y \
jq \ jq \
python-ipaddr \ python-ipaddr \
openstack-puppet-modules \ puppet-tripleo\
os-net-config \ os-net-config \
openvswitch \ openvswitch \
python-heat-agent* \ python-heat-agent* \

View File

@ -98,10 +98,10 @@ if [[ "$pacemaker_status" == "active" ]] ; then
pcs cluster stop pcs cluster stop
fi fi
else else
echo "Upgrading openstack-puppet-modules and its dependencies" echo "Upgrading Puppet modules and dependencies"
check_for_yum_lock check_for_yum_lock
yum -q -y update openstack-puppet-modules yum -q -y update puppet-tripleo
yum deplist openstack-puppet-modules | awk '/dependency/{print $2}' | xargs yum -q -y update yum deplist puppet-tripleo | awk '/dependency/{print $2}' | xargs yum -q -y update
echo "Upgrading other packages is handled by config management tooling" echo "Upgrading other packages is handled by config management tooling"
echo -n "true" > $heat_outputs_path.update_managed_packages echo -n "true" > $heat_outputs_path.update_managed_packages
exit 0 exit 0