Commit bc90f7d4 by Michael DeHaan

Merge pull request #8288 from tomster/patch-1

FreeBSD 10 compatibility fix
parents 77e408aa 146a0f1c
......@@ -285,7 +285,7 @@ class SysctlModule(object):
self.fixed_lines.append(new_line)
if self.args['name'] not in checked and self.args['state'] == "present":
new_line = "%s = %s\n" % (self.args['name'], self.args['value'])
new_line = "%s=%s\n" % (self.args['name'], self.args['value'])
self.fixed_lines.append(new_line)
# Completely rewrite the sysctl file
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment