summaryrefslogtreecommitdiffstats
path: root/roles/openshift_openstack/tasks/hostname.yml
blob: e1a18425f41f103e6d5ed71668cd1274e21dfdb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
- name: Setting Hostname Fact
  set_fact:
    new_hostname: "{{ custom_hostname | default(inventory_hostname_short) }}"

- name: Setting FQDN Fact
  set_fact:
    new_fqdn: "{{ new_hostname }}.{{ openshift_openstack_full_dns_domain }}"

- name: Setting hostname and DNS domain
  hostname: name="{{ new_fqdn }}"

- name: Check for cloud.cfg
  stat: path=/etc/cloud/cloud.cfg
  register: cloud_cfg

- name: Prevent cloud-init updates of hostname/fqdn (if applicable)
  lineinfile:
    dest: /etc/cloud/cloud.cfg
    state: present
    regexp: "{{ item.regexp }}"
    line: "{{ item.line }}"
  with_items:
  - { regexp: '^ - set_hostname', line: '# - set_hostname' }
  - { regexp: '^ - update_hostname', line: '# - update_hostname' }
  when: cloud_cfg.stat.exists == True