diff --git a/README.md b/README.md index e595f0b7..9c66a3fb 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 58d07b92..6ec76f75 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