mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 10:40:22 -07:00
Warn when there is a space in the mount module opts parameter.
This commit is contained in:
parent
9f567f05d6
commit
b9e72cdd98
1 changed files with 3 additions and 0 deletions
|
@ -234,6 +234,7 @@ def main():
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
changed = False
|
changed = False
|
||||||
rc = 0
|
rc = 0
|
||||||
args = {
|
args = {
|
||||||
|
@ -245,6 +246,8 @@ def main():
|
||||||
args['passno'] = module.params['passno']
|
args['passno'] = module.params['passno']
|
||||||
if module.params['opts'] is not None:
|
if module.params['opts'] is not None:
|
||||||
args['opts'] = module.params['opts']
|
args['opts'] = module.params['opts']
|
||||||
|
if ' ' in args['opts']:
|
||||||
|
module.fail_json(msg="unexpected space in 'opts' parameter")
|
||||||
if module.params['dump'] is not None:
|
if module.params['dump'] is not None:
|
||||||
args['dump'] = module.params['dump']
|
args['dump'] = module.params['dump']
|
||||||
if module.params['fstab'] is not None:
|
if module.params['fstab'] is not None:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue