use 'mounted' as default for disk mount
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2019-06-15 17:19:30 +02:00
parent 409d76099f
commit b4a15dd1ab
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
src: "{{ item.src }}"
fstype: "{{ item.fstype }}"
opts: "{{ item.opts | default(omit) }}"
state: "{{ item.state | default('present') }}"
state: "{{ item.state | default('mounted') }}"
loop: "{{ pve_disk_mount | default([]) }}"
loop_control:
label: "{{ item.src }} {{ item.path }}"