DCD-224: Create mountpoint as part of mount enabling.

This commit is contained in:
Steve Smith
2019-04-08 14:23:35 +10:00
parent 6c63e70b92
commit 7984d87d29
2 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,12 @@
---
- name: Create mountpoint
file:
state: directory
path: "{{ atl_shared_mountpoint }}"
owner: "{{ product_user }}"
mode: 0755
- name: Enable mountpoint in fstab
mount:
path: "{{ atl_shared_mountpoint }}"

View File

@@ -4,10 +4,3 @@
user:
name: "{{ product_user }}"
comment: "Product runtime user"
- name: Create mountpoint
file:
state: directory
path: "{{ atl_shared_mountpoint }}"
owner: "{{ product_user }}"
mode: 0755