mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Fix incorrect command-line parameters for Solaris (#22865)
* Fix incorrect command-line parameters for Solaris * Update mount.py
This commit is contained in:
committed by
Brian Coca
parent
65feaa11b2
commit
69bf5331b4
@@ -317,7 +317,10 @@ def unset_mount(module, args):
|
||||
def _set_fstab_args(fstab_file):
|
||||
result = []
|
||||
|
||||
if fstab_file and fstab_file != '/etc/fstab':
|
||||
if (
|
||||
fstab_file and
|
||||
fstab_file != '/etc/fstab' and
|
||||
get_platform().lower() != 'sunos'):
|
||||
if get_platform().lower().endswith('bsd'):
|
||||
result.append('-F')
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user