Browse Source

Merge pull request #8857 from erj826/openshift-ansible

Fix nsupdate var chec, checks for .
OpenShift Merge Robot 6 years ago
parent
commit
dc5c10d4c3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_openstack/tasks/check-prerequisites.yml

+ 1 - 1
roles/openshift_openstack/tasks/check-prerequisites.yml

@@ -126,4 +126,4 @@
   when:
   - openshift_openstack_nsupdate_zone is defined
   - openshift_openstack_full_dns_domain is defined
-  - openshift_openstack_full_dns_domain is not match(".*\." + openshift_openstack_nsupdate_zone + "$")
+  - openshift_openstack_full_dns_domain is not match("(.*\.)*" + openshift_openstack_nsupdate_zone + "$")