This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
hermes/cloud_init.cfg.tftpl

18 lines
308 B
Text
Raw Normal View History

2023-03-11 16:10:21 +00:00
#cloud-config
hostname: ${name}
manage_etc_hosts: true
ssh_pwauth: false
disable_root: false
ssh_authorized_keys:
- "${host_public_key}"
chpasswd:
list: |
root:root
expire: False
packages:
- qemu-guest-agent
2023-03-11 23:49:55 +00:00
- dnsmasq
package_update: true
package_upgrade: true
package_reboot_if_required: true