From 94b04d422f46331c193a10078144cedc8f1ba895 Mon Sep 17 00:00:00 2001 From: necro-nemesis Date: Tue, 7 May 2019 10:35:36 -0400 Subject: [PATCH] correct directory for resolv.conf.d --- installers/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index be2637f..90faba4 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -196,7 +196,7 @@ function default_configuration() { sudo mv $webroot_dir/config/hostapd.conf /etc/hostapd/hostapd.conf || install_error "Unable to move hostapd configuration file" sudo mv $webroot_dir/config/dnsmasq.conf /etc/dnsmasq.conf || install_error "Unable to move dnsmasq configuration file" sudo mv $webroot_dir/config/dhcpcd.conf /etc/dhcpcd.conf || install_error "Unable to move dhcpcd configuration file" - sudo mv $webroot_dir/config/head /etc/resolvconf/resolvconf.d/head || install_error "Unable to move resolvconf head file" + sudo mv $webroot_dir/config/head /etc/resolvconf/resolv.conf.d/head || install_error "Unable to move resolvconf head file" sudo resolvconf -u || install_error "Unable to update resolv.conf"