From c44d47db433a6cac0e697c1f941919ad4404cb54 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Wed, 5 Dec 2018 10:26:49 -0800 Subject: [PATCH] Configure packages on ubuntu arm servers We have an arm specific task here to install the HWE kernel. We use first found to select these tasks which means the default Debian package setup (unattended upgrades and cleanup) is not installed on our arm servers. Fix this by having the arm specific tasks include the generic Debian tasks. Change-Id: Ibb57e8b095a4cbd27cc14ef0c5ad45c61edc0679 --- playbooks/roles/base-server/tasks/Ubuntu.xenial.aarch64.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/playbooks/roles/base-server/tasks/Ubuntu.xenial.aarch64.yaml b/playbooks/roles/base-server/tasks/Ubuntu.xenial.aarch64.yaml index 41e603e9d6..285f704246 100644 --- a/playbooks/roles/base-server/tasks/Ubuntu.xenial.aarch64.yaml +++ b/playbooks/roles/base-server/tasks/Ubuntu.xenial.aarch64.yaml @@ -2,3 +2,6 @@ apt: name: linux-generic-hwe-16.04 state: present + +- name: Include generic Debian tasks + include_tasks: Debian.yaml