mirror of
https://github.com/mtan93/Installomator.git
synced 2026-03-08 05:31:53 +00:00
66 lines
1.9 KiB
Bash
66 lines
1.9 KiB
Bash
PKG_ID="com.scriptingosx.Installomator"
|
|
TARGET_VERSION="0.7.0"
|
|
URLDOWNLOAD="%MosyleCDNFile:blah-blah-blah%"
|
|
######################################################################
|
|
# Installation using Installomator (enter the software to install separated with spaces in the "what"-variable)
|
|
what="handbrake theunarchiver microsoftoffice365"
|
|
# Covered by Mosyle Catalog: "brave firefox googlechrome microsoftedge microsoftteams signal sublimetext vlc webex zoom" among others
|
|
######################################################################
|
|
|
|
## Code here
|
|
|
|
# Mark: Condition for Installomator installation
|
|
|
|
INSTALLED_VERSION="$(pkgutil --pkg-info $PKG_ID 2>/dev/null | grep -i "^version" | awk '{print $2}')"
|
|
|
|
echo "Current Version: ${INSTALLED_VERSION}"
|
|
|
|
if [[ "$TARGET_VERSION" != "$INSTALLED_VERSION" ]]; then
|
|
TMPDIR=$(mktemp -d )
|
|
if ! cd "$TMPDIR"; then
|
|
echo "error changing directory $TMPDIR"
|
|
exit 98
|
|
fi
|
|
NAME=$TMPDIR/$(date +%s).pkg
|
|
if ! curl -fsL "$URLDOWNLOAD" -o "$NAME"; then
|
|
echo "error downloading $URLDOWNLOAD to $NAME."
|
|
exit 97
|
|
fi
|
|
installer -pkg "$NAME" -target /
|
|
rm -rf "$TMPDIR"
|
|
else
|
|
echo "Installomator version $INSTALLED_VERSION already installed!"
|
|
fi
|
|
|
|
|
|
# Mark: Start Installomator label(s) installation
|
|
|
|
# Count errors
|
|
errorCount=0
|
|
|
|
# Verify that Installomator has been installed
|
|
destFile="/usr/local/Installomator/Installomator.sh"
|
|
if [ ! -e "${destFile}" ]; then
|
|
echo "Installomator not found here:"
|
|
echo "${destFile}"
|
|
echo "Exiting."
|
|
exit 99
|
|
fi
|
|
|
|
for item in $what; do
|
|
#echo $item
|
|
${destFile} ${item} LOGO=mosyle NOTIFY=all BLOCKING_PROCESS_ACTION=tell_user #NOTIFY=silent BLOCKING_PROCESS_ACTION=quit_kill #INSTALL=force
|
|
if [ $? != 0 ]; then
|
|
# Error handling
|
|
echo "[$(DATE)] Error installing ${item}. Exit code $?"
|
|
let errorCount++
|
|
# exit $?
|
|
fi
|
|
done
|
|
|
|
echo
|
|
echo "Errors: $errorCount"
|
|
echo "[$(DATE)][LOG-END]"
|
|
|
|
exit $errorCount
|