tests(packer): add arch-server and ubuntu 24.04 images.
This commit is contained in:
parent
f0cdadbdaf
commit
3aa07e4d64
6 changed files with 167 additions and 2 deletions
76
tests/packer/init/archlinux-server.user-data.yml
Normal file
76
tests/packer/init/archlinux-server.user-data.yml
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
#cloud-config
|
||||
|
||||
hostname: ${hostname}
|
||||
locale: en_IE
|
||||
keyboard:
|
||||
layout: ie
|
||||
|
||||
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:
|
||||
# Install core packages
|
||||
- apparmor
|
||||
- base-devel
|
||||
- qemu-guest-agent
|
||||
- rng-tools
|
||||
- spice-vdagent
|
||||
|
||||
# Install usefull core packages
|
||||
- bash-completion
|
||||
- git
|
||||
- htop
|
||||
- man
|
||||
- pass
|
||||
- python-notify2
|
||||
- vim
|
||||
- wget
|
||||
|
||||
runcmd:
|
||||
|
||||
# Regenerate grub.cfg
|
||||
- [ grub-mkconfig, -o, /boot/grub/grub.cfg ]
|
||||
|
||||
# Enable core services
|
||||
- [ systemctl, enable, apparmor ]
|
||||
- [ systemctl, enable, auditd ]
|
||||
- [ systemctl, enable, rngd ]
|
||||
- [ systemctl, enable, systemd-timesyncd.service ]
|
||||
|
||||
write_files:
|
||||
|
||||
# Network configuration
|
||||
- path: /etc/systemd/network/20-wired.network
|
||||
owner: 'root:root'
|
||||
permissions: '0644'
|
||||
content: |
|
||||
[Match]
|
||||
Name=en*
|
||||
|
||||
[Network]
|
||||
DHCP=yes
|
||||
|
||||
[DHCPv4]
|
||||
RouteMetric=10
|
||||
|
||||
# Enable AppArmor in kernel parameters
|
||||
- path: /etc/default/grub
|
||||
append: true
|
||||
content: |
|
||||
GRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT lsm=landlock,lockdown,yama,integrity,apparmor,bpf"
|
||||
|
||||
# Set some bash aliases
|
||||
- path: /etc/skel/.bashrc
|
||||
append: true
|
||||
content: |
|
||||
[[ -f ~/.bash_aliases ]] && source ~/.bash_aliases
|
||||
Loading…
Add table
Add a link
Reference in a new issue