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