From c5cb30f9e71a9a4d56454d7a12516e3a0716c9e4 Mon Sep 17 00:00:00 2001 From: Joe Haig Date: Sun, 23 Oct 2016 18:25:07 +0100 Subject: [PATCH] Install dnsmasq --- README.md | 5 ++--- installers/raspbian.sh | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e595f0b..9c66a3f 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,9 @@ $ wget -q https://git.io/voEUQ -O /tmp/raspap && bash /tmp/raspap The installer will complete the steps in the manual installation (below) for you. ## Manual installation -Start off by installing lighttpd, php5 and hostapd. +Start off by installing lighttpd, php5, hostapd and dnsmasq. ```sh -$ sudo apt-get install lighttpd php5-cgi hostapd -$ sudo apt-get install rfkill zd1211-firmware hostap-utils iw dnsmasq +$ sudo apt-get install lighttpd php5-cgi hostapd dnsmasq ``` After that, enable PHP for lighttpd and restart it for the settings to take effect. ```sh diff --git a/installers/raspbian.sh b/installers/raspbian.sh index 58d07b9..6ec76f7 100644 --- a/installers/raspbian.sh +++ b/installers/raspbian.sh @@ -9,7 +9,7 @@ function update_system_packages() { function install_dependencies() { install_log "Installing required packages" - sudo apt-get install lighttpd php5-cgi git hostapd || install_error "Unable to install dependencies" + sudo apt-get install lighttpd php5-cgi git hostapd dnsmasq || install_error "Unable to install dependencies" } install_raspap