This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
ka
/
ansible-role-filesystems
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
make uuid optional
master
Markus Katharina Brechtel
2 years ago
parent
8e9e822c7c
commit
561130c758
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
tasks/main.yml
+ 1
- 1
tasks/main.yml
View File
@@ -20,7 +20,7 @@
filesystem:
fstype: "{{ item.fstype }}"
dev: "{{ item.device }}"
opts: -U {{ item.uuid }}
opts:
"{% if item.uuid is defined %}
-U {{ item.uuid }}
{% endif %}"
force: "{{ filesystems_state == 'formated' }}"
with_items: "{{ filesystems }}"
when:
Write
Preview
Loading…
Cancel
Save