mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Port mount.py to python3, need to use six.iteritems (#4581)
This commit is contained in:
committed by
Matt Clay
parent
b48e65219b
commit
f4158304ac
@@ -88,6 +88,7 @@ EXAMPLES = '''
|
||||
- mount: name=/home src='UUID=b3e48f45-f933-4c8e-a700-22a159ec9077' fstype=xfs opts=noatime state=present
|
||||
'''
|
||||
|
||||
from ansible.module_utils.six import iteritems
|
||||
|
||||
def write_fstab(lines, dest):
|
||||
|
||||
@@ -122,7 +123,7 @@ def set_mount(module, **kwargs):
|
||||
to_write = []
|
||||
exists = False
|
||||
changed = False
|
||||
escaped_args = dict([(k, _escape_fstab(v)) for k, v in args.iteritems()])
|
||||
escaped_args = dict([(k, _escape_fstab(v)) for k, v in iteritems(args)])
|
||||
for line in open(args['fstab'], 'r').readlines():
|
||||
if not line.strip():
|
||||
to_write.append(line)
|
||||
|
||||
Reference in New Issue
Block a user