]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Add Backup Service to 'cinder-all' script
authorZhiteng Huang <zhithuang@ebaysf.com>
Fri, 17 Jan 2014 18:02:19 +0000 (02:02 +0800)
committerZhiteng Huang <zhithuang@ebaysf.com>
Fri, 17 Jan 2014 18:02:19 +0000 (02:02 +0800)
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

bin/cinder-all

index f33c25bf4bce52b0a4a9934a3b2b8060ecd45230..6c3762d0e1ab1fc0f6effaa7d569e6fd754d6616 100755 (executable)
@@ -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):