Fix incorrect command-line parameters for Solaris (#22865)
* Fix incorrect command-line parameters for Solaris * Update mount.py
This commit is contained in:
parent
65feaa11b2
commit
69bf5331b4
1 changed files with 4 additions and 1 deletions
|
@ -317,7 +317,10 @@ def unset_mount(module, args):
|
||||||
def _set_fstab_args(fstab_file):
|
def _set_fstab_args(fstab_file):
|
||||||
result = []
|
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'):
|
if get_platform().lower().endswith('bsd'):
|
||||||
result.append('-F')
|
result.append('-F')
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue