feat: ensure sshd is installed (#13)
All checks were successful
Deploy / build (push) Successful in 5s

- ensure the openssh-server package is installed
- this is required for puppet ssh-signing

Reviewed-on: https://git.query.consul/unkin/packer-images/pulls/13
This commit is contained in:
Ben Vincent 2025-04-24 22:55:38 +10:00
parent da06bcb1ac
commit 889a4ffc87

View File

@ -4,6 +4,7 @@ deploy_files_from_image = true
use_incus = true
packages = [
"htop",
"openssh-server",
"puppet-agent",
"puppet-initial"
]
@ -13,5 +14,6 @@ scripts_pre_packages = [
]
scripts_final = [
"dnf clean all",
"rm -rf /var/cache/dnf"
"rm -rf /var/cache/dnf",
"systemctl enable sshd"
]