Bläddra i källkod

a-o-i: Force option should allow reinstall

If uninstalled hosts were in detected in an environment,
the installer could get into a hung state that a user
could not easily recover from. This lets --force do what is
more expected.
Samuel Munilla 8 år sedan
förälder
incheckning
39a9d18820
1 ändrade filer med 3 tillägg och 1 borttagningar
  1. 3 1
      utils/src/ooinstall/cli_installer.py

+ 3 - 1
utils/src/ooinstall/cli_installer.py

@@ -751,7 +751,9 @@ def get_hosts_to_run_on(oo_cfg, callback_facts, unattended, force, verbose):
                     hosts_to_run_on.remove(host)
 
         # Handle the cases where we know about uninstalled systems
-        if len(uninstalled_hosts) > 0:
+        # TODO: This logic is getting hard to understand.
+        # we should revise all this to be cleaner.
+        if not force and len(uninstalled_hosts) > 0:
             for uninstalled_host in uninstalled_hosts:
                 click.echo("{} is currently uninstalled".format(uninstalled_host))
             # Fall through