diff --git a/conf/glance/glance-api.conf.tpl b/conf/glance/glance-api.conf.tpl index 08689913..15e5116a 100644 --- a/conf/glance/glance-api.conf.tpl +++ b/conf/glance/glance-api.conf.tpl @@ -6,7 +6,7 @@ verbose = True # Show debugging output in logs (sets DEBUG log level output) -debug = True +debug = False # Which backend store should Glance use by default is not specified # in a request to add a new image to Glance? Default: 'file' diff --git a/conf/glance/glance-registry.conf.tpl b/conf/glance/glance-registry.conf.tpl index 858a9b3a..4614ac8d 100644 --- a/conf/glance/glance-registry.conf.tpl +++ b/conf/glance/glance-registry.conf.tpl @@ -6,7 +6,7 @@ verbose = True # Show debugging output in logs (sets DEBUG log level output) -debug = True +debug = False # Address to bind the registry server bind_host = 0.0.0.0 diff --git a/devstack/libvirt.py b/devstack/libvirt.py index 72f75e95..ee180e73 100644 --- a/devstack/libvirt.py +++ b/devstack/libvirt.py @@ -79,7 +79,7 @@ def _status(distro): check_exit_code=False, params=mp) sysout = result[0][0] - if sysout.find("running") != -1: + if sysout.find("running") != -1 or sysout.find('start') != -1: return _ALIVE else: return _DEAD