2023-04-16 23:16:10 +02:00
|
|
|
#cloud-config
|
|
|
|
|
|
|
|
hostname: ${hostname}
|
2023-07-18 23:22:08 +02:00
|
|
|
locale: en_IE
|
|
|
|
keyboard:
|
|
|
|
layout: ie
|
2023-04-16 23:16:10 +02:00
|
|
|
|
|
|
|
ssh_pwauth: true
|
|
|
|
users:
|
|
|
|
- name: ${username}
|
|
|
|
plain_text_passwd: ${password}
|
|
|
|
shell: /bin/bash
|
|
|
|
ssh_authorized_keys:
|
|
|
|
- ${ssh_key}
|
|
|
|
lock_passwd: false
|
|
|
|
sudo: ALL=(ALL) NOPASSWD:ALL
|
|
|
|
|
|
|
|
package_update: true
|
|
|
|
package_upgrade: true
|
|
|
|
package_reboot_if_required: false
|
|
|
|
packages:
|
|
|
|
- apparmor-profiles
|
2023-11-14 00:40:51 +01:00
|
|
|
- auditd
|
|
|
|
- build-essential
|
2023-04-16 23:16:10 +02:00
|
|
|
- config-package-dev
|
|
|
|
- debhelper
|
|
|
|
- devscripts
|
|
|
|
- golang-go
|
|
|
|
- htop
|
|
|
|
- qemu-guest-agent
|
|
|
|
- rsync
|
|
|
|
- vim
|
|
|
|
|
|
|
|
write_files:
|
2024-03-08 14:13:00 +01:00
|
|
|
# Setup shared directory
|
|
|
|
- path: /etc/fstab
|
|
|
|
append: true
|
|
|
|
content: |
|
|
|
|
0a31bc478ef8e2461a4b1cc10a24cc4 /home/user/Projects/apparmor.d virtiofs defaults 0 1
|
|
|
|
|
2023-04-16 23:16:10 +02:00
|
|
|
# Network configuration
|
|
|
|
- path: /etc/systemd/network/20-wired.network
|
2024-03-15 15:55:46 +01:00
|
|
|
owner: "root:root"
|
|
|
|
permissions: "0644"
|
2023-04-16 23:16:10 +02:00
|
|
|
content: |
|
|
|
|
[Match]
|
|
|
|
Name=en*
|
|
|
|
|
|
|
|
[Network]
|
|
|
|
DHCP=yes
|
|
|
|
|
|
|
|
[DHCPv4]
|
|
|
|
RouteMetric=10
|