From fd20d867dc40002ad40357f9ca35827ac0fb0fbf Mon Sep 17 00:00:00 2001 From: Joe Haig Date: Fri, 21 Oct 2016 22:31:51 +0100 Subject: [PATCH] Install hostapd as a dependency --- installers/raspbian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/raspbian.sh b/installers/raspbian.sh index e42bf525..58d07b92 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 || install_error "Unable to install dependencies" + sudo apt-get install lighttpd php5-cgi git hostapd || install_error "Unable to install dependencies" } install_raspap