diff --git a/Helpers/install-app-loop.sh b/Helpers/install-app-loop.sh index 34f3966..4475506 100644 --- a/Helpers/install-app-loop.sh +++ b/Helpers/install-app-loop.sh @@ -49,7 +49,7 @@ if [ ! -e "${destFile}" ]; then caffexit 99 fi echo Started Installomator -for what in $whatList; do +for what in $whatList; #do echo Installing ${what} echo "Status: installing ${what}" >> /var/tmp/depnotify.log echo "Command: DeterminateManualStep: 1" >> /var/tmp/depnotify.log diff --git a/Helpers/launch-app-installo.sh b/Helpers/launch-app-installo.sh index b2e9ac1..2a3d641 100644 --- a/Helpers/launch-app-installo.sh +++ b/Helpers/launch-app-installo.sh @@ -8,13 +8,14 @@ cd /Library/Application\ Support/Purple/ # CHECKS FOR DIALOG AND PRESENTS IF REQUESTED if [ "$SHOWDIALOG" == "Y" ]; then echo "Dialog will open" - curl -s https://raw.githubusercontent.com/PurpleComputing/mdmscripts/main/Helpers/show-dialog-depnotify.sh | bash & + curl -s https://raw.githubusercontent.com/PurpleComputing/mdmscripts/main/Helpers/show-dialog-depnotify.sh | bash else echo "Dialog will not open" echo Continuing... fi # INSTALLS APPLICATION +sleep 5 curl -s https://raw.githubusercontent.com/PurpleComputing/mdmscripts/main/Helpers/install-app-loop.sh | bash # CHECKS TO ADD TO DOCK OR NOT diff --git a/Helpers/show-dialog-depnotify.sh b/Helpers/show-dialog-depnotify.sh index 51f39b0..028c5bb 100644 --- a/Helpers/show-dialog-depnotify.sh +++ b/Helpers/show-dialog-depnotify.sh @@ -17,4 +17,4 @@ echo "$MDMAPPNAME" >> /Library/Caches/com.purplecomputing.mdm/Apps/.appinstallna curl -s -L https://prpl.it/brandDEPinstall | bash # START DEPNOTIFY -sudo -u $(stat -f "%Su" /dev/console) /Library/Application\ Support/Purple/launch-dep.sh \ No newline at end of file +sudo -u $(stat -f "%Su" /dev/console) /Library/Application\ Support/Purple/launch-dep.sh & \ No newline at end of file