From fc732ecbcb211afe7cdc3839e585eb6d25b7fc17 Mon Sep 17 00:00:00 2001 From: Stephane Desneux Date: Fri, 19 Jan 2018 22:00:16 +0100 Subject: 10_base: install gpg first before any other package Installing gpg too late may cause unauthenticated package installs and may lead to container build failures See: https://jira.automotivelinux.org/browse/SPEC-979?focusedCommentId=15403&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15403 Bug-AGL: SPEC-979 Signed-off-by: Stephane Desneux --- INSTALL/common.d/10_base | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'INSTALL/common.d') diff --git a/INSTALL/common.d/10_base b/INSTALL/common.d/10_base index 686d399..42953b1 100644 --- a/INSTALL/common.d/10_base +++ b/INSTALL/common.d/10_base @@ -21,13 +21,13 @@ echo "Acquire::Retries 5;" >/etc/apt/apt.conf.d/99NetRetries apt-get update -y apt-get dist-upgrade -y +# gpg no longer installed and is requested by apt-key command (Debian Bug report logs - #830696) +apt-get install gpg -y + apt-get install -y passwd sudo openssh-server openssh-client vim systemd logrotate ifupdown locales apt-get remove -y exim4 exim4-base exim4-config exim4-daemon-light apt-get autoremove -y -# gpg no longer installed and is requested by apt-key command (Debian Bug report logs - #830696) -apt-get install gpg -y - # remove some useless systemd services if [[ "$CONTAINER_TYPE" = "docker" ]]; then for sysdir in /lib/systemd /etc/systemd; do -- cgit