Add Backup Service to 'cinder-all' script

Backup service is missing in 'cinder-all' script, this patch simply
add it so that this all-in-one script could launch all Cinder
Services.

Change-Id: I29c7355baabddd18a14fe9f97b71f58d24a033dc
This commit is contained in:
Zhiteng Huang 2014-01-18 02:02:19 +08:00
parent ea9c59448e
commit e71e596750

@ -69,7 +69,7 @@ if __name__ == '__main__':
except (Exception, SystemExit):
LOG.exception(_('Failed to load osapi_volume'))
for binary in ['cinder-volume', 'cinder-scheduler']:
for binary in ['cinder-volume', 'cinder-scheduler', 'cinder-backup']:
try:
servers.append(service.Service.create(binary=binary))
except (Exception, SystemExit):