feat: add steps to configure cloud-init
This commit is contained in:
@@ -28,9 +28,29 @@
|
||||
state: disabled
|
||||
policy: targeted
|
||||
|
||||
# Tasks for configuring cloud-init.
|
||||
- block:
|
||||
- name: "Message: Configuring cloud-init"
|
||||
ansible.builtin.debug:
|
||||
msg: "Configuring cloud-init"
|
||||
- name: "Add Proxmox datasource"
|
||||
ansible.builtin.copy:
|
||||
content: "datasource_list: [ NoCloud, ConfigDrive ]"
|
||||
dest: /etc/cloud/cloud.cfg.d/99_pve.cfg
|
||||
- name: Enable cloud-init services
|
||||
ansible.builtin.service:
|
||||
name: "{{ item }}"
|
||||
enabled: true
|
||||
loop:
|
||||
- cloud-config
|
||||
- cloud-init
|
||||
- cloud-init-local
|
||||
- cloud-final
|
||||
when: enable_cloudinit == 'true'
|
||||
|
||||
# Tasks for restarting the SSH daemon.
|
||||
- name: "Restarting the SSH daemon."
|
||||
ansible.builtin.systemd:
|
||||
name: sshd
|
||||
state: restarted
|
||||
daemon_reload: true
|
||||
daemon_reload: true
|
||||
Reference in New Issue
Block a user