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