Add cloud-init VMware datasource
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
297fb39202
commit
24aaf55e4b
@ -43,3 +43,11 @@
|
||||
- { src: files/etc/networkd-dispatcher/routable.d/20-chrony.j2, dest: /etc/networkd-dispatcher/routable.d/20-chrony }
|
||||
- { src: files/etc/networkd-dispatcher/off.d/20-chrony.j2, dest: /etc/networkd-dispatcher/off.d/20-chrony }
|
||||
- { src: files/etc/networkd-dispatcher/no-carrier.d/20-chrony.j2, dest: /etc/networkd-dispatcher/no-carrier.d/20-chrony }
|
||||
|
||||
- name: Create cloud-init datasource config file
|
||||
copy:
|
||||
dest: /etc/cloud/ds-identify.cfg
|
||||
force: true
|
||||
content: |
|
||||
datasource: VMware
|
||||
when: ansible_distribution_version is version('22.04', '>=')
|
||||
|
@ -93,3 +93,15 @@
|
||||
file:
|
||||
state: absent
|
||||
path: /etc/udev/rules.d/70-persistent-net.rules
|
||||
|
||||
- name: Remove subiquity disable cloud-init networking config
|
||||
file:
|
||||
path: /etc/cloud/cloud.cfg.d/subiquity-disable-cloudinit-networking.cfg
|
||||
state: absent
|
||||
when: ansible_distribution_version is version('22.04', '>=')
|
||||
|
||||
- name: Remove 99-installer.cfg which sets the cloud-init datasource to None
|
||||
file:
|
||||
path: /etc/cloud/cloud.cfg.d/99-installer.cfg
|
||||
state: absent
|
||||
when: ansible_distribution_version is version('22.04', '>=')
|
||||
|
Loading…
Reference in New Issue
Block a user