mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-08-01 04:14:46 +00:00
Merge 7b8d627552 into 1b9ae1c77f
This commit is contained in:
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
bugfixes:
|
||||||
|
- fstab - If a comment is appended to a fstab entry, state present creates a double-entry (https://github.com/ansible-collections/ansible.posix/issues/595).
|
||||||
@@ -303,7 +303,7 @@ def _set_mount_save_old(module, args):
|
|||||||
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
fields = line.split()
|
fields = line.split('#')[0].split()
|
||||||
|
|
||||||
# Check if we got a valid line for splitting
|
# Check if we got a valid line for splitting
|
||||||
# (on Linux the 5th and the 6th field is optional)
|
# (on Linux the 5th and the 6th field is optional)
|
||||||
|
|||||||
Reference in New Issue
Block a user