From 3404aeebe0fafca5dfe61453880ffc378ca07f16 Mon Sep 17 00:00:00 2001 From: billz Date: Mon, 30 Sep 2019 18:44:03 +0100 Subject: [PATCH] Updated with $apt_option for non-interactive install --- installers/raspbian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/raspbian.sh b/installers/raspbian.sh index 01de6c1a..9eb7a32b 100755 --- 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 $php_package git hostapd dnsmasq vnstat || install_error "Unable to install dependencies" + sudo apt-get install $apt_option lighttpd $php_package git hostapd dnsmasq vnstat || install_error "Unable to install dependencies" } install_raspap