Test list of cinder services in test_services()

This commit is contained in:
Corey Bryant 2014-06-30 17:24:26 +00:00
parent 1bd5e59a45
commit 1771f0619e

View File

@ -90,11 +90,10 @@ class KeystoneBasicDeployment(OpenStackAmuletDeployment):
"""Verify the expected services are running on the corresponding """Verify the expected services are running on the corresponding
service units.""" service units."""
commands = { commands = {
self.mysql_sentry: 'status mysql', self.mysql_sentry: ['status mysql'],
self.keystone_sentry: 'status keystone', self.keystone_sentry: ['status keystone'],
self.cinder_sentry: 'status cinder-api', self.cinder_sentry: ['status cinder-api', 'status cinder-scheduler',
self.cinder_sentry: 'status cinder-scheduler', 'status cinder-volume']
self.cinder_sentry: 'status cinder-volume'
} }
ret = u.validate_services(commands) ret = u.validate_services(commands)
if ret: if ret: