From 7ac5ef5f85b6683dde85efe6eb47690af5fb9345 Mon Sep 17 00:00:00 2001 From: marios Date: Thu, 8 Dec 2016 15:04:48 +0200 Subject: Adds a step0 for pre upgrade-init checks Adds a step0 for any pre-upgrade checks. This migrates some of the checks we have at the top of extraconfig/tasks/major_upgrade_controller_pacemaker_1.sh Checks for other services (and for the cluster) will follow in separate commits. Partially-Implements: blueprint overcloud-upgrades-per-service Change-Id: I607f1fed68d7f11773484c3d7cb3e5af67465d57 --- puppet/services/tripleo-packages.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'puppet/services/tripleo-packages.yaml') diff --git a/puppet/services/tripleo-packages.yaml b/puppet/services/tripleo-packages.yaml index da6e3083..737be829 100644 --- a/puppet/services/tripleo-packages.yaml +++ b/puppet/services/tripleo-packages.yaml @@ -33,6 +33,14 @@ outputs: step_config: | include ::tripleo::packages upgrade_tasks: + - name: Check yum for rpm-python present + tags: step0 + yum: "name=rpm-python state=present" + register: rpm_python_check + - name: Fail when rpm-python wasn't present + fail: msg="rpm-python package was not present before this run! Check environment before re-running" + when: rpm_python_check.changed != false + tags: step0 - name: Update all packages tags: step3 yum: name=* state=latest -- cgit 1.2.3-korg