From 1a3bb9cb49925da34f2d73e9a4f7e4493f0f5724 Mon Sep 17 00:00:00 2001 From: necro-nemesis Date: Fri, 3 Jan 2020 12:41:45 -0500 Subject: [PATCH] Install resolvconf in the event it's elected to be utilized in dnsmasq. --- installers/raspbian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/raspbian.sh b/installers/raspbian.sh index 2099867..2ec0352 100755 --- a/installers/raspbian.sh +++ b/installers/raspbian.sh @@ -14,7 +14,7 @@ function install_dependencies() { curl -s https://deb.imaginary.stream/public.gpg | sudo apt-key add - echo "deb https://deb.imaginary.stream $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/imaginary.stream.list sudo apt-get update - sudo yes | apt-get install lighttpd $php_package git hostapd dnsmasq vnstat lokinet || install_error "Unable to install dependencies" + sudo yes | apt-get install lighttpd $php_package git resolvconf hostapd dnsmasq vnstat lokinet || install_error "Unable to install dependencies" } #Remove NetworkManager and install dhcpd if required.