diff options
Diffstat (limited to 'manifests/profile/pacemaker/nova.pp')
-rw-r--r-- | manifests/profile/pacemaker/nova.pp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/manifests/profile/pacemaker/nova.pp b/manifests/profile/pacemaker/nova.pp index 13c6128..222035e 100644 --- a/manifests/profile/pacemaker/nova.pp +++ b/manifests/profile/pacemaker/nova.pp @@ -25,7 +25,13 @@ class tripleo::profile::pacemaker::nova ( $step = hiera('step'), ) { - - include ::tripleo::profile::base::nova + Service <| + tag == 'nova-service' + |> { + hasrestart => true, + restart => '/bin/true', + start => '/bin/true', + stop => '/bin/true', + } } |