diff options
Diffstat (limited to 'utils/src')
| -rw-r--r-- | utils/src/ooinstall/cli_installer.py | 15 | 
1 files changed, 7 insertions, 8 deletions
diff --git a/utils/src/ooinstall/cli_installer.py b/utils/src/ooinstall/cli_installer.py index 05adc7153..2b6c9deee 100644 --- a/utils/src/ooinstall/cli_installer.py +++ b/utils/src/ooinstall/cli_installer.py @@ -130,14 +130,13 @@ http://docs.openshift.com/enterprise/latest/architecture/infrastructure_componen          host_props['node'] = True          #TODO: Reenable this option once container installs are out of tech preview -        #rpm_or_container = click.prompt('Will this host be RPM or Container based (rpm/container)?', -        #                                type=click.Choice(['rpm', 'container']), -        #                                default='rpm') -        #if rpm_or_container == 'container': -        #    host_props['containerized'] = True -        #else: -        #    host_props['containerized'] = False -        host_props['containerized'] = False +        rpm_or_container = click.prompt('Will this host be RPM or Container based (rpm/container)?', +                                        type=click.Choice(['rpm', 'container']), +                                        default='rpm') +        if rpm_or_container == 'container': +            host_props['containerized'] = True +        else: +            host_props['containerized'] = False          if existing_env:              host_props['new_host'] = True  | 
