feat: ensure sshd is installed
Build / build (pull_request) Successful in 3m33s

- ensure the openssh-server package is installed
- this is required for puppet ssh-signing
This commit is contained in:
2025-04-24 22:46:13 +10:00
parent da06bcb1ac
commit 29a8706099
@@ -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"
]