From 4a5922a86dcd0237652c7ee21656dc2f0d0fe490 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Sat, 4 Jan 2025 12:46:22 +0100 Subject: [PATCH] Explicitly install gpg Necessary for trixie and the apt_repository Ansible module. --- sysimages/post-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysimages/post-install.sh b/sysimages/post-install.sh index ccf8b6f..7f4d322 100755 --- a/sysimages/post-install.sh +++ b/sysimages/post-install.sh @@ -29,7 +29,7 @@ echo 'APT::Periodic::Enable "0";' > $TARGET/etc/apt/apt.conf.d/02periodic # Install required packages. We need an SSH server and a Python # installation for Ansible. -PACKAGES="openssh-server ca-certificates python3-minimal python3-apt libpam-systemd" +PACKAGES="openssh-server ca-certificates python3-minimal python3-apt libpam-systemd gpg" if [ ! -e $TARGET/usr/sbin/policy-rc.d ]; then echo 'exit 101' > $TARGET/usr/sbin/policy-rc.d -- GitLab