From ae7c20a7aaa89994e2e7797187342276385bd000 Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Sat, 13 Dec 2025 09:03:29 +0300 Subject: [PATCH] Add mount configuration --- playbook-system.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/playbook-system.yml b/playbook-system.yml index e9143e0..f461c39 100644 --- a/playbook-system.yml +++ b/playbook-system.yml @@ -40,3 +40,20 @@ owner: root group: root mode: "0755" + + - name: 'Create directory for mount' + ansible.builtin.file: + path: '/mnt/applications' + state: 'directory' + mode: '0755' + tags: + - mount-storage + + - name: 'Mount external storages' + ansible.posix.mount: + path: '/mnt/applications' + src: 'UUID=3942bffd-8328-4536-8e88-07926fb17d17' + fstype: ext4 + state: mounted + tags: + - mount-storage