mirror of
https://github.com/PurpleComputing/mdmscripts.git
synced 2026-02-03 14:13:27 +00:00
49 lines
1.6 KiB
Bash
49 lines
1.6 KiB
Bash
#!/bin/sh
|
|
#####################################################################################################
|
|
#
|
|
# ABOUT THIS PROGRAM
|
|
#
|
|
# NAME
|
|
# detectx.sh -- Installs or updates DetectX
|
|
#
|
|
# SYNOPSIS
|
|
# sudo detectx.sh
|
|
#
|
|
####################################################################################################
|
|
#
|
|
# HISTORY
|
|
#
|
|
# Version: 1.0
|
|
#
|
|
# - 1.0 Michael Tanner, 05.12.2021
|
|
#
|
|
####################################################################################################
|
|
# Script to download and install detectx App.
|
|
# Only works on Intel systems.
|
|
#
|
|
|
|
# Making Purple Cache directories for in the event that the helper script hasn't been run
|
|
mkdir -p /Library/Caches/com.purplecomputing.mdm/
|
|
mkdir -p /Library/Caches/com.purplecomputing.mdm/Logs/
|
|
mkdir -p /Library/Caches/com.purplecomputing.mdm/Apps/
|
|
|
|
dmgfile="DetectX_Swift.app.zip"
|
|
logfile="/Library/Caches/com.purplecomputing.mdm/Logs/DetectXInstallScript.log"
|
|
deplog="/var/tmp/depnotify.log"
|
|
scriptver="1.0"
|
|
|
|
echo "Script Version: ${scriptver}" >> ${logfile}
|
|
echo "Status: Installing DetectX" >> ${deplog}
|
|
echo "Status: Installing DetectX" >> ${logfile}
|
|
url="https://s3.amazonaws.com/sqwarq.com/PublicZips/DetectX_Swift.app.zip"
|
|
cd /Library/Caches/com.purplecomputing.mdm/Apps/
|
|
/usr/bin/curl -L -s -o /Library/Caches/com.purplecomputing.mdm/Apps/${dmgfile} ${url}
|
|
unzip DetectX_Swift.app.zip
|
|
/bin/echo "`date`: Installing..." >> ${logfile}
|
|
ditto -rsrc "/Library/Caches/com.purplecomputing.mdm/Apps/DetectX Swift.app" "/Applications/DetectX Swift.app"
|
|
|
|
/bin/sleep 10
|
|
/bin/rm /Library/Caches/com.purplecomputing.mdm/Apps/${dmgfile}
|
|
echo "Command: DeterminateManualStep: 1" >> ${deplog}
|
|
exit 0
|