sysctl module: append newline character to lines in the file

This commit is contained in:
James Tanner 2014-01-15 10:25:27 -05:00
parent cb6f7748d5
commit 272c3634cd

View file

@ -246,7 +246,7 @@ class SysctlModule(object):
f = open(tmp_path,"w")
try:
for l in self.fixed_lines:
f.write(l)
f.write(l.strip() + "\n")
except IOError, e:
self.module.fail_json(msg="Failed to write to file %s: %s" % (tmp_path, str(e)))
f.flush()