diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-11-06 11:36:42 -0500 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2015-11-06 11:36:42 -0500 |
commit | 8b3006399a4fbcacd420fb407c02a7504be3d36b (patch) | |
tree | 6ae6a9dd2e3f7ec3138f3676f8a1368cf638ad0c /utils/src | |
parent | 941246584a95cc4b5d5619e2b31f75923888f2f6 (diff) | |
parent | e5cafe3da31848e12568a6fbd79dfd2193bb72e7 (diff) | |
download | openshift-8b3006399a4fbcacd420fb407c02a7504be3d36b.tar.gz openshift-8b3006399a4fbcacd420fb407c02a7504be3d36b.tar.bz2 openshift-8b3006399a4fbcacd420fb407c02a7504be3d36b.tar.xz openshift-8b3006399a4fbcacd420fb407c02a7504be3d36b.zip |
Merge remote-tracking branch 'origin/upgradeFix2' into upgradeFix2
Diffstat (limited to 'utils/src')
-rw-r--r-- | utils/src/ooinstall/cli_installer.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/src/ooinstall/cli_installer.py b/utils/src/ooinstall/cli_installer.py index 9f0861b77..e63f14816 100644 --- a/utils/src/ooinstall/cli_installer.py +++ b/utils/src/ooinstall/cli_installer.py @@ -323,6 +323,8 @@ def get_installed_hosts(hosts, callback_facts): installed_hosts.append(host) return installed_hosts +# pylint: disable=too-many-branches +# This pylint error will be corrected shortly in separate PR. def get_hosts_to_run_on(oo_cfg, callback_facts, unattended, force, verbose): # Copy the list of existing hosts so we can remove any already installed nodes. @@ -383,7 +385,7 @@ def get_hosts_to_run_on(oo_cfg, callback_facts, unattended, force, verbose): openshift_ansible.set_config(oo_cfg) click.echo('Gathering information from hosts...') - callback_facts, error = openshift_ansible.default_facts(oo_cfg.hosts) + callback_facts, error = openshift_ansible.default_facts(oo_cfg.hosts, verbose) if error: click.echo("There was a problem fetching the required information. " \ "See {} for details.".format(oo_cfg.settings['ansible_log_path'])) |