diff --git a/basic-system/handlers/main.yml b/basic-system/handlers/main.yml
index 8742a0ab10180d1090872666461f9b324b6fe99f..669755b2cca1a0c57c63996fdfd5078ecd597e66 100644
--- a/basic-system/handlers/main.yml
+++ b/basic-system/handlers/main.yml
@@ -15,3 +15,6 @@
 
 - name: gather network facts once again
   setup: gather_subset=network
+
+- name: gather minimal standard facts once again
+  setup: gather_subset=min
diff --git a/basic-system/tasks/main.yml b/basic-system/tasks/main.yml
index 6ab71598d023b20f0dad76823bd89df5f26cd6b9..a66f91614cf737083ffb25ed3d994171e1994cd3 100644
--- a/basic-system/tasks/main.yml
+++ b/basic-system/tasks/main.yml
@@ -1,11 +1,25 @@
 ---
 
 - name: ensure /tmp is a tmpfs
-  mount: name=/tmp src=tmpfs fstype=tmpfs opts=nosuid,rw,noexec state=mounted
+  mount:
+    name: /tmp
+    src: tmpfs
+    fstype: tmpfs
+    opts: nosuid,rw,noexec
+    state: mounted
   tags:
-    - config
     - mount
 
+- name: ensure lsb release information is available
+  apt:
+    name: lsb-release
+    state: present
+  notify:
+    - gather minimal standard facts once again
+  tags:
+    - lsb
+- meta: flush_handlers
+
 - include: logging.yml
 - meta: flush_handlers
 - include: network.yml