diff options
Diffstat (limited to 'cloudinit/distros/ubuntu.py')
-rw-r--r-- | cloudinit/distros/ubuntu.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cloudinit/distros/ubuntu.py b/cloudinit/distros/ubuntu.py index 9252a1c4..ad12400a 100644 --- a/cloudinit/distros/ubuntu.py +++ b/cloudinit/distros/ubuntu.py @@ -44,7 +44,8 @@ class Distro(distros.Distro): self._apt_get(command, args) def set_hostname(self, hostname): - util.write_file("/etc/hostname", "%s\n" % hostname, 0644) + contents = "%s\n" % (hostname) + util.write_file("/etc/hostname", contents, 0644) LOG.debug("Setting hostname to %s", hostname) util.subp(['hostname', hostname]) @@ -59,7 +60,8 @@ class Distro(distros.Distro): update_files.append("/etc/hostname") for fn in update_files: try: - util.write_file(fn, "%s\n" % hostname, 0644) + contents = "%s\n" % (hostname) + util.write_file(fn, contents, 0644) except: util.logexc(LOG, "Failed to write hostname %s to %s", hostname, fn) |