diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-02-15 10:59:48 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-02-15 10:59:54 -0500 |
commit | 7aff6316210a8c9b32147770397d3e4664b21af7 (patch) | |
tree | 9d417265ce1afc37032756e3743690aa5e0ced1a /playbooks | |
parent | ce306085ee0b8667dbba90e3a95199ce066c38d4 (diff) | |
download | openshift-7aff6316210a8c9b32147770397d3e4664b21af7.tar.gz openshift-7aff6316210a8c9b32147770397d3e4664b21af7.tar.bz2 openshift-7aff6316210a8c9b32147770397d3e4664b21af7.tar.xz openshift-7aff6316210a8c9b32147770397d3e4664b21af7.zip |
Bug 1308314 - Failed to continue installation when pressing CTRL-C
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/common/openshift-cluster/validate_hostnames.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/common/openshift-cluster/validate_hostnames.yml b/playbooks/common/openshift-cluster/validate_hostnames.yml index 047431b63..fd82997b9 100644 --- a/playbooks/common/openshift-cluster/validate_hostnames.yml +++ b/playbooks/common/openshift-cluster/validate_hostnames.yml @@ -21,6 +21,6 @@ failed_when: false - name: Warn user about bad openshift_hostname values pause: - prompt: "The hostname \"{{ openshift.common.hostname }}\" for \"{{ ansible_nodename }}\" doesn't resolve to an ip address owned by this host. Please set openshift_hostname variable to a hostname that when resolved on the host in question resolves to an IP address matching an interface on this host. This host will fail liveness checks for pods utilizing hostPorts, press CTRL-C to continue." + prompt: "The hostname \"{{ openshift.common.hostname }}\" for \"{{ ansible_nodename }}\" doesn't resolve to an ip address owned by this host. Please set openshift_hostname variable to a hostname that when resolved on the host in question resolves to an IP address matching an interface on this host. This host will fail liveness checks for pods utilizing hostPorts, press ENTER to continue or CTRL-C to abort." seconds: "{{ 10 if openshift_override_hostname_check | default(false) | bool else omit }}" when: lookupip.stdout not in ansible_all_ipv4_addresses |