From bffe52839bb5c45cb9e84f667fba158041aba0da Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Wed, 30 Dec 2020 22:58:38 +0200
Subject: [PATCH] Fill in the Debian server role.

---
 roles/debian_server/tasks/main.yml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/roles/debian_server/tasks/main.yml b/roles/debian_server/tasks/main.yml
index d0d5b48..f9d4656 100644
--- a/roles/debian_server/tasks/main.yml
+++ b/roles/debian_server/tasks/main.yml
@@ -30,11 +30,11 @@
   apt:
     cache_valid_time: 3600
     name:
+      - amd64-microcode
       - btrfs-progs
       - cryptsetup
       - docker.io
       - fwupd
-      - fwupdate-signed
       - intel-microcode
       - libpam-mount-bin
       - rsync
@@ -88,7 +88,11 @@
     state: present
 
 - name: Disable swap
-  meta: noop
+  lineinfile:
+    backup: true
+    path: /etc/fstab
+    regexp: swap
+    state: absent
 
 - name: Set UID/GID mapping range
   loop:
-- 
GitLab