Fixing default options.
This commit is contained in:
parent
b8365e896e
commit
a02fa9d3fc
@ -19,9 +19,11 @@ from optparse import OptionParser, OptionGroup
|
|||||||
|
|
||||||
from devstack import log as logging
|
from devstack import log as logging
|
||||||
from devstack import settings
|
from devstack import settings
|
||||||
|
from devstack import shell as sh
|
||||||
from devstack import version
|
from devstack import version
|
||||||
|
|
||||||
HELP_WIDTH = 80
|
HELP_WIDTH = 80
|
||||||
|
DEF_OS_DIR = "openstack"
|
||||||
LOG = logging.getLogger("devstack.opts")
|
LOG = logging.getLogger("devstack.opts")
|
||||||
|
|
||||||
|
|
||||||
@ -40,20 +42,23 @@ def parse():
|
|||||||
dest="component",
|
dest="component",
|
||||||
help="openstack component: %s" % (_format_list(settings.COMPONENT_NAMES)))
|
help="openstack component: %s" % (_format_list(settings.COMPONENT_NAMES)))
|
||||||
|
|
||||||
base_group = OptionGroup(parser, "Install/uninstall/start/stop options")
|
base_group = OptionGroup(parser, "Install & uninstall & start & stop specific options")
|
||||||
base_group.add_option("-a", "--action",
|
base_group.add_option("-a", "--action",
|
||||||
action="store",
|
action="store",
|
||||||
type="string",
|
type="string",
|
||||||
dest="action",
|
dest="action",
|
||||||
metavar="ACTION",
|
metavar="ACTION",
|
||||||
help="required action to perform: %s" % (_format_list(settings.ACTIONS)))
|
help="required action to perform: %s" % (_format_list(settings.ACTIONS)))
|
||||||
|
def_os_dir = sh.joinpths(sh.gethomedir(), DEF_OS_DIR)
|
||||||
base_group.add_option("-d", "--directory",
|
base_group.add_option("-d", "--directory",
|
||||||
action="store",
|
action="store",
|
||||||
type="string",
|
type="string",
|
||||||
dest="dir",
|
dest="dir",
|
||||||
metavar="DIR",
|
metavar="DIR",
|
||||||
|
default=def_os_dir,
|
||||||
help=("empty root DIR for install or "
|
help=("empty root DIR for install or "
|
||||||
"DIR with existing components for start/stop/uninstall"))
|
"DIR with existing components for start/stop/uninstall "
|
||||||
|
"(default: %default)"))
|
||||||
base_group.add_option("-i", "--ignore-deps",
|
base_group.add_option("-i", "--ignore-deps",
|
||||||
action="store_false",
|
action="store_false",
|
||||||
dest="ensure_deps",
|
dest="ensure_deps",
|
||||||
@ -68,13 +73,9 @@ def parse():
|
|||||||
dest="ref_components",
|
dest="ref_components",
|
||||||
metavar="COMPONENT",
|
metavar="COMPONENT",
|
||||||
help="component which will not have ACTION applied but will be referenced as if it was (ACTION dependent)")
|
help="component which will not have ACTION applied but will be referenced as if it was (ACTION dependent)")
|
||||||
base_group.add_option("-k", "--keep-packages",
|
|
||||||
action="store_true",
|
|
||||||
dest="keep_packages",
|
|
||||||
help="uninstall will keep any installed packages on the system")
|
|
||||||
parser.add_option_group(base_group)
|
parser.add_option_group(base_group)
|
||||||
|
|
||||||
stop_un_group = OptionGroup(parser, "Uninstall/stop options")
|
stop_un_group = OptionGroup(parser, "Uninstall & stop specific options")
|
||||||
stop_un_group.add_option("-n", "--no-force",
|
stop_un_group.add_option("-n", "--no-force",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
dest="force",
|
dest="force",
|
||||||
@ -82,16 +83,24 @@ def parse():
|
|||||||
default=False)
|
default=False)
|
||||||
parser.add_option_group(stop_un_group)
|
parser.add_option_group(stop_un_group)
|
||||||
|
|
||||||
|
un_group = OptionGroup(parser, "Uninstall specific options")
|
||||||
|
un_group.add_option("-k", "--keep-old",
|
||||||
|
action="store_true",
|
||||||
|
dest="keep_old",
|
||||||
|
help="uninstall will keep as much of the old install as it can (default: %default)",
|
||||||
|
default=False)
|
||||||
|
parser.add_option_group(un_group)
|
||||||
|
|
||||||
#extract only what we care about
|
#extract only what we care about
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
output = dict()
|
output = dict()
|
||||||
output['components'] = options.component
|
output['components'] = options.component or list()
|
||||||
output['dir'] = options.dir
|
output['dir'] = options.dir or ""
|
||||||
output['ref_components'] = options.ref_components
|
output['ref_components'] = options.ref_components or list()
|
||||||
output['action'] = options.action
|
output['action'] = options.action or ""
|
||||||
output['force'] = not options.force
|
output['force'] = not options.force
|
||||||
output['ignore_deps'] = not options.ensure_deps
|
output['ignore_deps'] = not options.ensure_deps
|
||||||
output['keep_packages'] = options.keep_packages
|
output['keep_old'] = options.keep_old
|
||||||
output['extras'] = args
|
output['extras'] = args
|
||||||
|
|
||||||
return output
|
return output
|
||||||
|
4
stack
4
stack
@ -83,7 +83,7 @@ def run(args):
|
|||||||
if distro is None:
|
if distro is None:
|
||||||
print("Unsupported platform " + utils.color_text(platform, "red") + "!")
|
print("Unsupported platform " + utils.color_text(platform, "red") + "!")
|
||||||
return False
|
return False
|
||||||
action = args.pop("action", "").strip().lower()
|
action = args.pop("action").strip().lower()
|
||||||
if not (action in settings.ACTIONS):
|
if not (action in settings.ACTIONS):
|
||||||
print(utils.color_text("No valid action specified!", "red"))
|
print(utils.color_text("No valid action specified!", "red"))
|
||||||
return False
|
return False
|
||||||
@ -97,7 +97,7 @@ def run(args):
|
|||||||
#here on out we should be using the logger (and not print)
|
#here on out we should be using the logger (and not print)
|
||||||
start_time = time.time()
|
start_time = time.time()
|
||||||
config = common.get_config()
|
config = common.get_config()
|
||||||
pkg_manager = common.get_packager(distro, args.pop('keep_packages', True))
|
pkg_manager = common.get_packager(distro, args.get('keep_old'))
|
||||||
components = utils.parse_components(args.pop("components"))
|
components = utils.parse_components(args.pop("components"))
|
||||||
runner = actions.ActionRunner(distro, action, rootdir, config, pkg_manager, components=components, **args)
|
runner = actions.ActionRunner(distro, action, rootdir, config, pkg_manager, components=components, **args)
|
||||||
LOG.info("Starting action [%s] on %s for distro [%s]" % (action, date.rcf8222date(), distro))
|
LOG.info("Starting action [%s] on %s for distro [%s]" % (action, date.rcf8222date(), distro))
|
||||||
|
Loading…
Reference in New Issue
Block a user