mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-02-02 17:03:32 +00:00
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
|