need to pre-create the shared folder structure

This commit is contained in:
Geoff Jacobs
2022-10-14 10:10:34 +11:00
parent be1f8ba43d
commit 6f696339db

View File

@@ -1,6 +1,14 @@
---
- name: Create the product local home directory
ansible.builtin.file:
path: "{{ atl_product_home }}/shared"
state: directory
owner: "{{ atl_product_user }}"
group: "{{ atl_product_user }}"
mode: "0644"
- name: Symlink the the shared home
file:
ansible.builtin.file:
src: "{{ atl_shared_mountpoint }}/{{ atl_product_edition }}/shared"
dest: "{{ atl_product_home }}/shared"
state: link