|
@@ -207,6 +207,7 @@ def get_variant_and_version():
|
|
|
message = "%s\n(%s) %s %s" % (message, i, variant.description,
|
|
|
version.name)
|
|
|
i = i + 1
|
|
|
+ message = "%s\n" % message
|
|
|
|
|
|
click.echo(message)
|
|
|
response = click.prompt("Choose a variant from above: ", default=1)
|
|
@@ -433,7 +434,8 @@ def get_hosts_to_run_on(oo_cfg, callback_facts, unattended, force, verbose):
|
|
|
# Main CLI entrypoint, not much we can do about too many arguments.
|
|
|
def cli(ctx, unattended, configuration, ansible_playbook_directory, ansible_config, ansible_log_path, verbose):
|
|
|
"""
|
|
|
- atomic-openshift-installer makes the process for installing OSE or AEP easier by interactively gathering the data needed to run on each host.
|
|
|
+ atomic-openshift-installer makes the process for installing OSE or AEP
|
|
|
+ easier by interactively gathering the data needed to run on each host.
|
|
|
It can also be run in unattended mode if provided with a configuration file.
|
|
|
|
|
|
Further reading: https://docs.openshift.com/enterprise/latest/install_config/install/quick_install.html
|
|
@@ -460,7 +462,8 @@ def cli(ctx, unattended, configuration, ansible_playbook_directory, ansible_conf
|
|
|
|
|
|
if ctx.obj['ansible_config']:
|
|
|
oo_cfg.settings['ansible_config'] = ctx.obj['ansible_config']
|
|
|
- elif os.path.exists(DEFAULT_ANSIBLE_CONFIG):
|
|
|
+ elif 'ansible_config' not in oo_cfg.settings and \
|
|
|
+ os.path.exists(DEFAULT_ANSIBLE_CONFIG):
|
|
|
# If we're installed by RPM this file should exist and we can use it as our default:
|
|
|
oo_cfg.settings['ansible_config'] = DEFAULT_ANSIBLE_CONFIG
|
|
|
|