Add a separate pgp key for work.
This commit is contained in:
@@ -1,10 +1,19 @@
|
||||
- name: Set the /etc/hosts
|
||||
when: hostname is undefined or item.key != hostname
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/hosts
|
||||
regexp: '^{{ item.key | regex_escape() }}\s+'
|
||||
line: "{{ item.key }} {{ item.value | join(' ') }}"
|
||||
loop: "{{ etc_hosts | dict2items }}"
|
||||
|
||||
# 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 }}"
|
||||
|
||||
- import_tasks: tasks/freebsd.yaml
|
||||
when: 'os_flavor == "freebsd"'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user