summaryrefslogtreecommitdiff
path: root/cloudinit
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2014-02-28 16:40:08 -0500
committerScott Moser <smoser@ubuntu.com>2014-02-28 16:40:08 -0500
commitacfd6c50e4dc3de5e20cfabe6bac1569e43d3ff1 (patch)
tree4766712951b024ad4a3e7cbfe951780886d73d08 /cloudinit
parent91770eb78f30bea931bafa8d07b4f7f41193185b (diff)
downloadvyos-cloud-init-acfd6c50e4dc3de5e20cfabe6bac1569e43d3ff1.tar.gz
vyos-cloud-init-acfd6c50e4dc3de5e20cfabe6bac1569e43d3ff1.zip
distros/freebsd.py: fix regression due to previous pylint cleanup
Diffstat (limited to 'cloudinit')
-rw-r--r--cloudinit/distros/freebsd.py2
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):