diff options
author | Brad P. Crochet <brad@redhat.com> | 2016-06-09 10:34:21 -0400 |
---|---|---|
committer | Brad P. Crochet <brad@redhat.com> | 2016-07-08 08:22:38 -0400 |
commit | 187cd52b04d3bfcb3c24bd6774fac4494a279997 (patch) | |
tree | d6d488531c456b72971b76e787d0b242f4490f5d /manifests/profile/base/sahara | |
parent | 9f0ab60383509548e91740ec6559ab9af0f04199 (diff) |
Split Sahara pacemaker roles into separate services
In order for each service to operate independently when used with Pacemaker,
the roles needed to be separated.
This also drops all pacemaker constraints, as they do not make much sense
in the composable realm.
Change-Id: Id61eb15b1e2366f5b73c6e7d47941651e40651b1
Partial-Bug: #1592284
Diffstat (limited to 'manifests/profile/base/sahara')
-rw-r--r-- | manifests/profile/base/sahara/api.pp | 2 | ||||
-rw-r--r-- | manifests/profile/base/sahara/engine.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/profile/base/sahara/api.pp b/manifests/profile/base/sahara/api.pp index e9149b1..dc23d64 100644 --- a/manifests/profile/base/sahara/api.pp +++ b/manifests/profile/base/sahara/api.pp @@ -28,6 +28,6 @@ class tripleo::profile::base::sahara::api ( ) { if $step >= 4 { include ::tripleo::profile::base::sahara - include ::sahara::api + include ::sahara::service::api } } diff --git a/manifests/profile/base/sahara/engine.pp b/manifests/profile/base/sahara/engine.pp index 28aff7b..8fa1f5f 100644 --- a/manifests/profile/base/sahara/engine.pp +++ b/manifests/profile/base/sahara/engine.pp @@ -37,6 +37,6 @@ class tripleo::profile::base::sahara::engine ( if $step >= 4 or ($step >= 3 and $sync_db) { include ::tripleo::profile::base::sahara - include ::sahara::engine + include ::sahara::service::engine } } |