Merge "Check CONF values *after* command line args are parsed"
This commit is contained in:
@@ -66,12 +66,12 @@ CONF.import_opt('debug', 'nova.openstack.common.log')
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
if CONF.ssl_only and not os.path.exists(CONF.cert):
|
|
||||||
parser.error("SSL only and %s not found" % CONF.cert)
|
|
||||||
|
|
||||||
# Setup flags
|
# Setup flags
|
||||||
config.parse_args(sys.argv)
|
config.parse_args(sys.argv)
|
||||||
|
|
||||||
|
if CONF.ssl_only and not os.path.exists(CONF.cert):
|
||||||
|
parser.error("SSL only and %s not found" % CONF.cert)
|
||||||
|
|
||||||
# Check to see if novnc html/js/css files are present
|
# Check to see if novnc html/js/css files are present
|
||||||
if not os.path.exists(CONF.web):
|
if not os.path.exists(CONF.web):
|
||||||
print "Can not find novnc html/js/css files at %s." % CONF.web
|
print "Can not find novnc html/js/css files at %s." % CONF.web
|
||||||
|
@@ -66,12 +66,12 @@ CONF.import_opt('debug', 'nova.openstack.common.log')
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
if CONF.ssl_only and not os.path.exists(CONF.cert):
|
|
||||||
parser.error("SSL only and %s not found" % CONF.cert)
|
|
||||||
|
|
||||||
# Setup flags
|
# Setup flags
|
||||||
config.parse_args(sys.argv)
|
config.parse_args(sys.argv)
|
||||||
|
|
||||||
|
if CONF.ssl_only and not os.path.exists(CONF.cert):
|
||||||
|
parser.error("SSL only and %s not found" % CONF.cert)
|
||||||
|
|
||||||
# Check to see if spice html/js/css files are present
|
# Check to see if spice html/js/css files are present
|
||||||
if not os.path.exists(CONF.web):
|
if not os.path.exists(CONF.web):
|
||||||
print "Can not find spice html/js/css files at %s." % CONF.web
|
print "Can not find spice html/js/css files at %s." % CONF.web
|
||||||
|
Reference in New Issue
Block a user