ansible: add kernel headers for arm64 and armhf
authorMichael Jeanson <mjeanson@efficios.com>
Wed, 14 Aug 2024 20:03:41 +0000 (16:03 -0400)
committerMichael Jeanson <mjeanson@efficios.com>
Mon, 26 Aug 2024 17:41:17 +0000 (13:41 -0400)
Change-Id: If27a1528514d7c7493c48c5e49ab4710560bdcad
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
automation/ansible/roles/common-node/tasks/setup-Debian.yml

index 0c45d6b05228d1e427c0e9f366a97590660c0910..fdca8507ecea527e904372c2961c35f4974723e3 100644 (file)
       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Debian'
       apt:
         name: ['linux-headers-amd64']
+    - name: Install armhf linux headers Debian
+      when: ansible_architecture == 'armv7l' and ansible_distribution == 'Debian'
+      apt:
+        name: ['linux-headers-armmp-lpae']
+    - name: Install arm64 linux headers Debian
+      when: ansible_architecture == 'aarch64' and ansible_distribution == 'Debian'
+      apt:
+        name: ['linux-headers-arm64']
     - name: Install linux headers Ubuntu
       when: ansible_distribution == 'Ubuntu'
       apt:
This page took 0.02397 seconds and 4 git commands to generate.