mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Python 2.4 fixes for modules
This commit is contained in:
@@ -182,7 +182,7 @@ def main():
|
||||
|
||||
if state in ['dump','import']:
|
||||
if target is None:
|
||||
module.fail_json(msg="with state={0} target is required".format(state))
|
||||
module.fail_json(msg="with state=%s target is required" % (state))
|
||||
connect_to_db = db
|
||||
else:
|
||||
connect_to_db = 'mysql'
|
||||
|
||||
@@ -718,7 +718,7 @@ class SunOS(User):
|
||||
continue
|
||||
fields[1] = self.password
|
||||
line = ':'.join(fields)
|
||||
lines.append('{0}\n'.format(line))
|
||||
lines.append('%s\n' % line)
|
||||
open(self.SHADOWFILE, 'w+').writelines(lines)
|
||||
except Exception, err:
|
||||
self.module.fail_json(msg="failed to update users password: %s" % str(err))
|
||||
@@ -800,7 +800,7 @@ class SunOS(User):
|
||||
continue
|
||||
fields[1] = self.password
|
||||
line = ':'.join(fields)
|
||||
lines.append('{0}\n'.format(line))
|
||||
lines.append('%s\n' % line)
|
||||
open(self.SHADOWFILE, 'w+').writelines(lines)
|
||||
rc = 0
|
||||
except Exception, err:
|
||||
|
||||
Reference in New Issue
Block a user