RLM-322 Fix domain name

Current leapupgrade would accidentally add extra period sign
between hostnames, this fix would remove the hardcoded sign.

Change-Id: I7705da00ec651909f9bef9d4be96478dff22b993
This commit is contained in:
Frank-ZhangXin 2018-01-15 13:04:25 -06:00
parent 22bf285757
commit 1416812e12
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@
- result2 | skipped
vars:
rfc_1034_1035_name: "{{ inventory_hostname | replace('_', '-') }}"
domain_name: "{{ openstack_domain|default('openstack.local') }}"
domain_name: "{{ openstack_domain|default('.openstack.local') }}"
- name: Cleanup heat services through the database
hosts: galera_all[0]

View File

@ -51,4 +51,4 @@
- result2 | skipped
vars:
rfc_1034_1035_name: "{{ inventory_hostname | replace('_', '-') }}"
domain_name: "{{ openstack_domain|default('openstack.local') }}"
domain_name: "{{ openstack_domain|default('.openstack.local') }}"