From 76ee50ec96e6820cbbc2b663f02885ee8f2a104f Mon Sep 17 00:00:00 2001 From: billz Date: Thu, 7 Nov 2019 13:36:21 +0000 Subject: [PATCH] Cleanup debug output --- installers/raspbian.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/installers/raspbian.sh b/installers/raspbian.sh index 92e22081..68f854d1 100755 --- a/installers/raspbian.sh +++ b/installers/raspbian.sh @@ -85,16 +85,13 @@ function update_system_packages() { if [ "${install_cert:-}" = 1 ]; then source="mkcert" - #wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source} - echo "${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source}" - source /var/www/html/installers/${source}.sh + wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source} + source /var/www/html/installers/raspap_${source}.sh install_certificate else source="common" - #wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap$_{source} - echo "${UPDATE_URL}installers/${source}.sh -O /tmp/raspap$_{source}" - source /var/www/html/installers/${source}.sh + wget -q ${UPDATE_URL}installers/${source}.sh -O /tmp/raspap_${source} + source /var/www/html/installers/raspap_${source}.sh install_raspap fi -