12 lines
247 B
YAML
12 lines
247 B
YAML
|
---
|
||
|
|
||
|
- name: Network | Deploy network configs
|
||
|
template:
|
||
|
src: hostname.if.j2
|
||
|
dest: "/etc/hostname.{{ item.key }}"
|
||
|
mode: 0640
|
||
|
owner: root
|
||
|
group: wheel
|
||
|
with_dict: "{{ openbsd_network_interfaces }}"
|
||
|
#notify: Network | Apply
|