Install dnsmasq

This commit is contained in:
Joe Haig 2016-10-23 18:25:07 +01:00
parent 0880ce388c
commit c5cb30f9e7
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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