summaryrefslogtreecommitdiff
path: root/roles/prepare-dkms/tasks/default.yml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2018-12-09 13:32:22 +0100
committerChristian Pointner <equinox@spreadspace.org>2018-12-09 13:32:22 +0100
commiteea8a11fbfe39af00eac885a260fc54edd7b7ec7 (patch)
tree49503b3c477b5d84fa62e99c31ce95da4eeb2483 /roles/prepare-dkms/tasks/default.yml
parentMerge branch 'new-repo-structure' (diff)
apt without with_items
Diffstat (limited to 'roles/prepare-dkms/tasks/default.yml')
-rw-r--r--roles/prepare-dkms/tasks/default.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/roles/prepare-dkms/tasks/default.yml b/roles/prepare-dkms/tasks/default.yml
index f3748feb..bff826ae 100644
--- a/roles/prepare-dkms/tasks/default.yml
+++ b/roles/prepare-dkms/tasks/default.yml
@@ -1,8 +1,7 @@
---
- name: install kernel headers and dkms
- with_items:
-# - linux-headers-amd64 # TODO: fix this so it works for ubuntu(hwe) and debian
- - dkms
apt:
- name: "{{ item }}"
+ name:
+ # - linux-headers-amd64 # TODO: fix this so it works for ubuntu(hwe) and debian
+ - dkms
state: present