From 83bd5b323fae4ee3d01543a8012dfc3fed742e49 Mon Sep 17 00:00:00 2001 From: kwindrem <58538395+kwindrem@users.noreply.github.com> Date: Sun, 13 Jun 2021 07:37:23 -0700 Subject: [PATCH] disabled auto update --- setup | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/setup b/setup index 70fefb0..edf508e 100755 --- a/setup +++ b/setup @@ -46,7 +46,6 @@ if [ $scriptAction == 'NONE' ] ; then echo " Quit (q) without further action" echo " Display setup log (s) outputs the last 100 lines of the log" echo - echo " Enable/disable automatic GitHub package updates (g)" echo " Manually install packages from GitHub or USB stick (p)" echo fullPrompt=false @@ -73,23 +72,7 @@ if [ $scriptAction == 'NONE' ] ; then [sS]*) displayLog $setupLogFile ;; - [gG]*) - if [ -f "$setupOptionsDir/autoGitHubUpdate" ]; then - echo "Automatic GitHub updates are currently ENABLED" - else - echo "Automatic GitHub updates are currently disabled" - fi - read -p "Enable (e) / Disable (d) / no change(cr)?: " response - if [ ! -z $response ]; then - if [ $response == 'e' ] || [ $response == 'E' ]; then - logMessage "enabling automatic GitHub package updates" - touch "$setupOptionsDir/autoGitHubUpdate" - elif [ $response == 'd' ] || [ $response == 'D' ]; then - logMessage "disabling automatic GitHub package updates" - rm -f "$setupOptionsDir/autoGitHubUpdate" - fi - fi - ;; + [pP]*) "$scriptDir/packageInstaller" fullPrompt=true @@ -103,7 +86,7 @@ if [ $scriptAction == 'NONE' ] ; then fi if [ $scriptAction == 'INSTALL' ] ; then - installService $packageName +# installService $packageName fi if [ $scriptAction == 'UNINSTALL' ] ; then