tests(packer): define more common cloud init resources.
This commit is contained in:
parent
5bfebf6ea5
commit
2bc87f68a8
23 changed files with 311 additions and 434 deletions
47
tests/cloud-init/archlinux.yml
Normal file
47
tests/cloud-init/archlinux.yml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
#cloud-config
|
||||
|
||||
# Core packages for Archlinux
|
||||
core-packages: &core-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
|
||||
|
||||
# Core desktop packages for Archlinux
|
||||
desktop-packages: &desktop-packages
|
||||
# Install basic services
|
||||
- networkmanager
|
||||
- cups
|
||||
- cups-pdf
|
||||
- system-config-printer
|
||||
|
||||
# Install Applications
|
||||
- firefox
|
||||
- chromium
|
||||
- terminator
|
||||
|
||||
# Enable AppArmor in kernel parameters
|
||||
grub-enable-apparmor: &grub-enable-apparmor
|
||||
path: /etc/default/grub
|
||||
append: true
|
||||
content: |
|
||||
GRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT lsm=landlock,lockdown,yama,integrity,apparmor,bpf apparmor.debug=1"
|
||||
|
||||
# Set some bash aliases
|
||||
setup-bash-aliases: &setup-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