Files
ansible_proxmox_VM/templates/cloudinit_vendor.yaml.j2
Jose e4dc0f3265 style 💎: Update user group settings
Updated the user group settings to only include 'sudo' group, removing unnecessary groups. This change improves code readability and maintainability.
2025-11-15 12:59:08 +01:00

16 lines
209 B
Django/Jinja

#cloud-config
packages:
{% for pkg in packages %}
- {{ pkg }}
{% endfor %}
{% if dns %}
manage_resolv_conf: true
resolv_conf:
nameservers:
{% for ns in dns %}
- {{ ns }}
{% endfor %}
{% endif %}