Skip to content

Commit

Permalink
gentoo: fix hostname rendering when value has a comment (#611)
Browse files Browse the repository at this point in the history
Gentoo's hostname file format instead of being just the host name
is hostname=thename". The old code works fine when the file has no comments
but if there is a comment the line

```
gentoo_hostname_config = 'hostname="%s"' % conf
```

can render an invalid hostname file that looks similar to

```
hostname="#This is the host namehello"
```

The fix inserts the hostname in a gentoo friendly way so that it gets
handled by HostnameConf as a whole and comments are handled and preserved
  • Loading branch information
manuelisimo committed Oct 27, 2020
1 parent 404f0a4 commit b8bd081
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
10 changes: 6 additions & 4 deletions cloudinit/distros/gentoo.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,12 @@ def _write_hostname(self, your_hostname, out_fn):
pass
if not conf:
conf = HostnameConf('')
conf.set_hostname(your_hostname)
gentoo_hostname_config = 'hostname="%s"' % conf
gentoo_hostname_config = gentoo_hostname_config.replace('\n', '')
util.write_file(out_fn, gentoo_hostname_config, 0o644)

# Many distro's format is the hostname by itself, and that is the
# way HostnameConf works but gentoo expects it to be in
# hostname="the-actual-hostname"
conf.set_hostname('hostname="%s"' % your_hostname)
util.write_file(out_fn, str(conf), 0o644)

def _read_system_hostname(self):
sys_hostname = self._read_hostname(self.hostname_conf_fn)
Expand Down
26 changes: 26 additions & 0 deletions tests/unittests/test_distros/test_gentoo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This file is part of cloud-init. See LICENSE file for license information.

from cloudinit import util
from cloudinit import atomic_helper
from cloudinit.tests.helpers import CiTestCase
from . import _get_distro


class TestGentoo(CiTestCase):

def test_write_hostname(self):
distro = _get_distro("gentoo")
hostname = "myhostname"
hostfile = self.tmp_path("hostfile")
distro._write_hostname(hostname, hostfile)
self.assertEqual('hostname="myhostname"\n', util.load_file(hostfile))

def test_write_existing_hostname_with_comments(self):
distro = _get_distro("gentoo")
hostname = "myhostname"
contents = '#This is the hostname\nhostname="localhost"'
hostfile = self.tmp_path("hostfile")
atomic_helper.write_file(hostfile, contents, omode="w")
distro._write_hostname(hostname, hostfile)
self.assertEqual('#This is the hostname\nhostname="myhostname"\n',
util.load_file(hostfile))
1 change: 1 addition & 0 deletions tools/.github-cla-signers
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ johnsonshi
jqueuniet
landon912
lucasmoura
manuelisimo
marlluslustosa
matthewruffell
nishigori
Expand Down

0 comments on commit b8bd081

Please sign in to comment.