From 9db261ce0238063025077bcbac72b3bccc4df91f Mon Sep 17 00:00:00 2001
From: Vladimir Still <git@vstill.eu>
Date: Fri, 18 Feb 2022 21:17:19 +0100
Subject: [PATCH] ansible: Fstab for hesperia

---
 ansible/hesperia.yml | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/ansible/hesperia.yml b/ansible/hesperia.yml
index b56cc90..d5f2f09 100644
--- a/ansible/hesperia.yml
+++ b/ansible/hesperia.yml
@@ -44,6 +44,38 @@
     - import_role:
         name: common_deb
 
+    - name: "Setup fstab"
+      mount:
+        path: '{{item.path}}'
+        src: '{{item.src}}'
+        fstype: '{{item.fstype}}'
+        opts: '{{item.opts|default("defaults")}}'
+        dump: "0"
+        passno: '{{item.passno|default("0")}}'
+        state: '{{item.state|default("mounted")}}'
+      with_items:
+        - path: "/"
+          src: /dev/hsexprtest-vg/root
+          fstype: ext4
+          opts: errors=remount-ro
+          passno: 1
+
+        - path: "/boot"
+          src: "UUID=e25766ad-2d27-4109-86f6-723091bd15f2"
+          fstype: ext2
+          passno: 2
+
+        - path: none
+          src: /dev/hsexprtest-vg/swap
+          fstype: swap
+          state: present
+
+        - path: /tmp
+          src: /dev/hsexprtest-vg/tmp
+          fstype: ext4
+          opts: defaults,relatime
+
+
     - name: exprTest groups
       group:
         name: '{{item.name}}'
-- 
GitLab