diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-05 13:11:42 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-05 13:11:42 -0500 |
commit | a552645b05d4af2180596fb01837d0f1062b3ac5 (patch) | |
tree | 1ab45e0023102cfd71fd0d6f23ebceba53939ec3 | |
parent | ae7757195a4230b561b14353a7024d964b5d9664 (diff) | |
download | openshift-a552645b05d4af2180596fb01837d0f1062b3ac5.tar.gz openshift-a552645b05d4af2180596fb01837d0f1062b3ac5.tar.bz2 openshift-a552645b05d4af2180596fb01837d0f1062b3ac5.tar.xz openshift-a552645b05d4af2180596fb01837d0f1062b3ac5.zip |
Bug 1278244 - Incorrect node information gathered by atomic-openshift-installer
Previously the output was a little confusing. We didn't display anything about
the uninstalled hosts.
-rw-r--r-- | utils/src/ooinstall/cli_installer.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/src/ooinstall/cli_installer.py b/utils/src/ooinstall/cli_installer.py index f675efead..ff740e426 100644 --- a/utils/src/ooinstall/cli_installer.py +++ b/utils/src/ooinstall/cli_installer.py @@ -343,6 +343,8 @@ def get_hosts_to_run_on(oo_cfg, callback_facts, unattended, force): # anything. if not force: hosts_to_run_on.remove(host) + for new_host in set(hosts_to_run_on) - set(installed_hosts): + click.echo("{} is currently uninstalled".format(new_host)) # for unattended either continue if they force install or exit if they didn't if unattended: if not force: |