Fix cinder::quota_set requires

The quota set exec was using a non-existant anchor. This change updates
it to use the cinder::install::end anchor instead.

Change-Id: Ic9a2299416e7494918835428ba1e1ef311a5de2a
Closes-Bug: #1702964
This commit is contained in:
Alex Schultz 2017-07-07 14:36:19 -06:00
parent cf71667f5f
commit 02b35294a5
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ define cinder::quota_set (
# lint:endignore
onlyif => 'openstack quota show --class default | grep -qP -- -1',
environment => $cinder_env,
require => Anchor['cinder-support-package'],
require => Anchor['cinder::install::end'],
path => ['/usr/bin', '/bin'],
}
}

View File

@ -40,7 +40,7 @@ describe 'cinder::quota_set' do
'OS_AUTH_URL=http://127.127.127.1:5000/v2.0/',
'OS_REGION_NAME=test'],
:onlyif => 'openstack quota show --class default | grep -qP -- -1',
:require => 'Anchor[cinder-support-package]')
:require => 'Anchor[cinder::install::end]')
end
end
end