vms/recipes/debian/templates/conf/cloud-init/user-data

13 lines
198 B
Plaintext
Raw Normal View History

2023-09-28 16:34:53 +02:00
#cloud-config
ssh_pwauth: True
user: ${user}
password: ${password}
chpasswd:
expire: False
# Work around network interface down after boot
runcmd:
%{ for cmd in runcmd ~}
- ${cmd}
%{ endfor ~}