From c838a33deb15ed26c85ccabdf32a28c31707904a Mon Sep 17 00:00:00 2001 From: billz Date: Tue, 11 Apr 2023 23:29:04 +0100 Subject: [PATCH] Update _install_dependencies() --- installers/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index e35a37fd..c0bedf57 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -206,7 +206,7 @@ function _install_dependencies() { # Set dconf-set-selections echo iptables-persistent iptables-persistent/autosave_v4 boolean true | sudo debconf-set-selections echo iptables-persistent iptables-persistent/autosave_v6 boolean true | sudo debconf-set-selections - sudo apt-get install $apt_option lighttpd git hostapd dnsmasq iptables-persistent $php_package $dhcpcd_package vnstat qrencode || _install_status 1 "Unable to install dependencies" + sudo apt install $apt_option lighttpd git hostapd dnsmasq iptables-persistent $php_package $dhcpcd_package vnstat qrencode || _install_status 1 "Unable to install dependencies" _install_status 0 }