diff options
| author | Scott Moser <smoser@ubuntu.com> | 2014-02-28 16:40:08 -0500 |
|---|---|---|
| committer | Scott Moser <smoser@ubuntu.com> | 2014-02-28 16:40:08 -0500 |
| commit | acfd6c50e4dc3de5e20cfabe6bac1569e43d3ff1 (patch) | |
| tree | 4766712951b024ad4a3e7cbfe951780886d73d08 | |
| parent | 91770eb78f30bea931bafa8d07b4f7f41193185b (diff) | |
| download | vyos-cloud-init-acfd6c50e4dc3de5e20cfabe6bac1569e43d3ff1.tar.gz vyos-cloud-init-acfd6c50e4dc3de5e20cfabe6bac1569e43d3ff1.zip | |
distros/freebsd.py: fix regression due to previous pylint cleanup
| -rw-r--r-- | cloudinit/distros/freebsd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/distros/freebsd.py b/cloudinit/distros/freebsd.py index afb502c9..d98f9578 100644 --- a/cloudinit/distros/freebsd.py +++ b/cloudinit/distros/freebsd.py @@ -79,7 +79,7 @@ class Distro(distros.Distro): return val def _read_system_hostname(self): - sys_hostname = self._read_hostname() + sys_hostname = self._read_hostname(filename=None) return ('rc.conf', sys_hostname) def _read_hostname(self, filename, default=None): |
