sysctl module: append newline character to lines in the file
This commit is contained in:
parent
cb6f7748d5
commit
272c3634cd
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ class SysctlModule(object):
|
||||||
f = open(tmp_path,"w")
|
f = open(tmp_path,"w")
|
||||||
try:
|
try:
|
||||||
for l in self.fixed_lines:
|
for l in self.fixed_lines:
|
||||||
f.write(l)
|
f.write(l.strip() + "\n")
|
||||||
except IOError, e:
|
except IOError, e:
|
||||||
self.module.fail_json(msg="Failed to write to file %s: %s" % (tmp_path, str(e)))
|
self.module.fail_json(msg="Failed to write to file %s: %s" % (tmp_path, str(e)))
|
||||||
f.flush()
|
f.flush()
|
||||||
|
|
Loading…
Reference in a new issue