From: Zhiteng Huang Date: Fri, 17 Jan 2014 18:02:19 +0000 (+0800) Subject: Add Backup Service to 'cinder-all' script X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=e71e59675034585a3d9e894ed13ebcf4b23ecd2a;p=openstack-build%2Fcinder-build.git 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 --- diff --git a/bin/cinder-all b/bin/cinder-all index f33c25bf4..6c3762d0e 100755 --- a/bin/cinder-all +++ b/bin/cinder-all @@ -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):