From eefdcc1897d433521dc3ac0385b10cb83f23a864 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Wed, 12 Feb 2014 14:44:41 -0500 Subject: [PATCH] fix pylint warning (and real bug) in bad spelling of resolve_conf_fn --- cloudinit/distros/arch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/distros/arch.py b/cloudinit/distros/arch.py index fc5eee66..27dcaa88 100644 --- a/cloudinit/distros/arch.py +++ b/cloudinit/distros/arch.py @@ -34,7 +34,7 @@ class Distro(distros.Distro): network_conf_dir = "/etc/netctl" tz_conf_fn = "/etc/timezone" tz_local_fn = "/etc/localtime" - resolv_conf_fn = "/etc/resolv.conf" + resolve_conf_fn = "/etc/resolv.conf" init_cmd = ['systemctl'] # init scripts exclude_modules = [ 'grub-dpkg',