ansible: Install linux-headers on Debian x86_64 nodes
authorKienan Stewart <kstewart@efficios.com>
Tue, 8 Aug 2023 17:51:34 +0000 (13:51 -0400)
committerKienan Stewart <kstewart@efficios.com>
Tue, 8 Aug 2023 17:58:22 +0000 (13:58 -0400)
These are required for lttng-modules builds to succeed

Signed-off-by: Kienan Stewart <kstewart@efficios.com>
Change-Id: Idc1b1e2e9a5ac97d1810af3bd7c6f7b0dbe8bf67

automation/ansible/roles/common-node/tasks/setup-Debian.yml

index f1049a11777d3084d19e5ca07d7468eeee45f165..953bad637dd8b9c9183945e8492af67a2d5a354b 100644 (file)
       when: ansible_architecture == 'i386' and ansible_distribution == 'Debian'
       apt:
         name: ['linux-headers-686', 'linux-headers-686-pae']
+    - name: Install amd64 linux headers Debian
+      when: ansible_architecture == 'x86_64' and ansible_distribution == 'Debian'
+      apt:
+        name: ['linux-headers-amd64']
     - name: Install linux headers Ubuntu
       when: ansible_distribution == 'Ubuntu'
       apt:
This page took 0.032074 seconds and 4 git commands to generate.