mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-02-02 17:03:32 +00:00
Jakub Sokołowski
581336eff8
https://github.com/status-im/infra-nimbus/issues/176 Signed-off-by: Jakub Sokołowski <jakub@status.im>
11 lines
243 B
YAML
11 lines
243 B
YAML
---
|
|
- name: Copy netplan config file
|
|
register: netplan
|
|
copy:
|
|
src: 'vars/addresses/{{ hostname }}.yml'
|
|
dest: '/etc/netplan/00-installer-config.yaml'
|
|
|
|
- name: Apply host netplan
|
|
when: netplan.changed
|
|
command: sudo netplan apply
|