machine_setup/ansible/roles/hosts/tasks/common.yaml

32 lines
986 B
YAML
Raw Normal View History

2022-12-04 07:28:25 +00:00
- name: Set the /etc/hosts
2024-01-02 17:29:39 +00:00
when: hostname is undefined or item.key != hostname
2022-12-04 07:28:25 +00:00
ansible.builtin.lineinfile:
path: /etc/hosts
2022-12-10 20:29:19 +00:00
regexp: '^{{ item.key | regex_escape() }}\s+'
2022-12-04 07:28:25 +00:00
line: "{{ item.key }} {{ item.value | join(' ') }}"
loop: "{{ etc_hosts | dict2items }}"
2024-01-02 17:29:39 +00:00
# Without an entry for the local hostname, firefox takes multiple minutes to launch.
- name: Set the /etc/hosts
when: hostname is defined
ansible.builtin.lineinfile:
path: /etc/hosts
regexp: '\s+{{ hostname | regex_escape() }}\s*$'
line: "127.0.0.1 {{ hostname }}"
2022-12-04 07:28:25 +00:00
- import_tasks: tasks/freebsd.yaml
when: 'os_flavor == "freebsd"'
- import_tasks: tasks/linux.yaml
when: 'os_flavor == "linux"'
- include_tasks:
file: tasks/peruser.yaml
apply:
become: yes
become_user: "{{ initialize_user }}"
when: users is defined
loop: "{{ users | dict2items | community.general.json_query('[?value.initialize==`true`].key') }}"
loop_control:
loop_var: initialize_user