Fix for pki_setup

pki_setup works only if keystone-user and keystone-group are
provided

Change-Id: I58c10e0cf39792d3096e3c3e4c0fa37ba40de2b1
Closes-Bug: 1561586
(cherry picked from commit 170c85d5aa)
This commit is contained in:
Oleksiy Molchanov 2016-03-24 17:34:23 +02:00
parent 90b2be328e
commit a2bca8a8d2
2 changed files with 2 additions and 0 deletions

View File

@ -794,6 +794,7 @@ class keystone(
}
exec { 'keystone-manage pki_setup':
command => "keystone-manage pki_setup --keystone-user ${keystone_user} --keystone-group ${keystone_group}",
path => '/usr/bin',
refreshonly => true,
creates => $signing_keyfile,

View File

@ -356,6 +356,7 @@ describe 'keystone' do
end
it { is_expected.to contain_exec('keystone-manage pki_setup').with(
:command => 'keystone-manage pki_setup --keystone-user keystone --keystone-group keystone',
:creates => '/etc/keystone/ssl/private/signing_key.pem'
) }
it { is_expected.to contain_file('/var/cache/keystone').with_ensure('directory') }