diff options
author | Alex Schultz <aschultz@mirantis.com> | 2016-05-13 10:10:18 -0600 |
---|---|---|
committer | Alex Schultz <aschultz@mirantis.com> | 2016-05-13 10:11:51 -0600 |
commit | 19e161cd73fd7064b1732b4100cd9cc28768a092 (patch) | |
tree | a11ad6c645ab2f23c874e2ed77c12b8098e58f40 | |
parent | 50b98562649e4cd0b3755355c0071ee2d4200981 (diff) |
Update keystone service name for signing keys
Since keystone is being run under apache, the signing keys should notify
apache and not the keystone service. The keystone service is actually
disabled, so if the keys get updated nothing happens.
Change-Id: Idfebeabf03d010956569c32b24437245e2b93c2a
Related-Bug: #1581591
-rw-r--r-- | manifests/profile/base/keystone.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/profile/base/keystone.pp b/manifests/profile/base/keystone.pp index 2f7a27a..5d51e5e 100644 --- a/manifests/profile/base/keystone.pp +++ b/manifests/profile/base/keystone.pp @@ -96,21 +96,21 @@ class tripleo::profile::base::keystone ( content => hiera('keystone_signing_certificate'), owner => 'keystone', group => 'keystone', - notify => Service['keystone'], + notify => Service[$::apache::params::service_name], require => File['/etc/keystone/ssl/certs'], } file { '/etc/keystone/ssl/private/signing_key.pem': content => hiera('keystone_signing_key'), owner => 'keystone', group => 'keystone', - notify => Service['keystone'], + notify => Service[$::apache::params::service_name], require => File['/etc/keystone/ssl/private'], } file { '/etc/keystone/ssl/certs/ca.pem': content => hiera('keystone_ca_certificate'), owner => 'keystone', group => 'keystone', - notify => Service['keystone'], + notify => Service[$::apache::params::service_name], require => File['/etc/keystone/ssl/certs'], } } |