diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-01-16 14:29:48 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-01-16 14:29:48 -0500 |
commit | 8d453d2a4da4492857a4487b14fe7b11a014115b (patch) | |
tree | f076768503899a7554be574e34d9c2220c8d8432 /cloudinit/distros/arch.py | |
parent | ae2f5123faab45e71e4dcf3237d7dac59a4c66b7 (diff) | |
download | vyos-cloud-init-8d453d2a4da4492857a4487b14fe7b11a014115b.tar.gz vyos-cloud-init-8d453d2a4da4492857a4487b14fe7b11a014115b.zip |
hostname: apply hostname same as is written
on RHEL, we were writing to persistent configuration the fqdn, but
invoking 'hostname' on the first boot with just the shortname. On 'reboot',
then the hostname would differ.
Now, whatever we write, invoke hostname with.
Also remove some duplicate code.
LP: #1246485
Diffstat (limited to 'cloudinit/distros/arch.py')
-rw-r--r-- | cloudinit/distros/arch.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/cloudinit/distros/arch.py b/cloudinit/distros/arch.py index 005a0dd4..68bf1aab 100644 --- a/cloudinit/distros/arch.py +++ b/cloudinit/distros/arch.py @@ -118,13 +118,6 @@ class Distro(distros.Distro): return False return True - def _select_hostname(self, hostname, fqdn): - # Prefer the short hostname over the long - # fully qualified domain name - if not hostname: - return fqdn - return hostname - def _write_hostname(self, your_hostname, out_fn): conf = None try: |