summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorBrenton Leanhardt <bleanhar@redhat.com>2016-02-15 11:32:41 -0500
committerBrenton Leanhardt <bleanhar@redhat.com>2016-02-15 11:32:41 -0500
commit9734dbb505537355222cb672ac69c0abde381660 (patch)
tree6ae979c0c3dd824b0f26da14d2d802a945bd4f9f /playbooks
parent65e8d09e50a269be1dabb00b0db0890c8f6cf014 (diff)
parentb54e98e2d4feb9c1cc642643bdf62945a3d5aea7 (diff)
downloadopenshift-9734dbb505537355222cb672ac69c0abde381660.tar.gz
openshift-9734dbb505537355222cb672ac69c0abde381660.tar.bz2
openshift-9734dbb505537355222cb672ac69c0abde381660.tar.xz
openshift-9734dbb505537355222cb672ac69c0abde381660.zip
Merge pull request #1397 from brenton/bz1308314
Bug 1308314 - Failed to continue installation when pressing CTRL-C
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/common/openshift-cluster/validate_hostnames.yml2
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