mirror of
https://github.com/mtan93/Installomator.git
synced 2026-06-09 22:08:47 +01:00
Compare commits
8 Commits
v9.2
...
FortiClient
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b22cc2423 | |||
| ad5ad5f408 | |||
| 69fbc31078 | |||
| cd5a4b2b5e | |||
| 20e87458ad | |||
| 1797bb645b | |||
| 38f2f45d97 | |||
| e7f4f86b58 |
@@ -1,7 +1,13 @@
|
||||
dbeaverce)
|
||||
name="DBeaver"
|
||||
type="dmg"
|
||||
if [[ $(arch) == "arm64" ]]; then
|
||||
downloadURL="https://dbeaver.io/files/dbeaver-ce-latest-macos-aarch64.dmg"
|
||||
appNewVersion="$(curl -fsIL "${downloadURL}" | grep -i ^location | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/' | head -1)"
|
||||
elif [[ $(arch) == "i386" ]]; then
|
||||
downloadURL="https://dbeaver.io/files/dbeaver-ce-latest-macos.dmg"
|
||||
appNewVersion="$(curl -fsIL "${downloadURL}" | grep -i ^location | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/' | head -1)"
|
||||
fi
|
||||
expectedTeamID="42B6MDKMW8"
|
||||
blockingProcesses=( dbeaver )
|
||||
;;
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
forticlient_ztna)
|
||||
name="FortiClient ZTNA"
|
||||
type="pkgInDmg"
|
||||
pkgName="Install.mpkg"
|
||||
packageID="com.fortinet.forticlient."
|
||||
downloadURL="https://links.fortinet.com/forticlient/mac/fabricagent"
|
||||
appNewVersion="$(curl -fsL "$downloadURL" --remote-header-name --remote-name -w "%{url_effective}\n" -r 0-0 | cut -d "_" -f2)"
|
||||
expectedTeamID="AH4XFXJ7DK"
|
||||
;;
|
||||
@@ -0,0 +1,9 @@
|
||||
propresenter7)
|
||||
name="ProPresenter 7"
|
||||
appName="ProPresenter.app"
|
||||
type="zip"
|
||||
blockingProcesses="ProPresenter"
|
||||
downloadURL=$(curl -s "https://api.renewedvision.com/v1/pro/upgrade?platform=macos&osVersion=12&appVersion=771&buildNumber=117899527&includeNotes=false" | grep -Eo '"downloadUrl":.*?[^\]",' | head -n 1 | cut -d \" -f 4 | sed -e 's/\\//g')
|
||||
appNewVersion=$(curl -s "https://api.renewedvision.com/v1/pro/upgrade?platform=macos&osVersion=12&appVersion=771&buildNumber=117899527&includeNotes=false" | grep -Eo '"version":.*?[^\]",' | head -n 1 | cut -d \" -f 4)
|
||||
expectedTeamID="97GAAZ6CPX"
|
||||
;;
|
||||
Reference in New Issue
Block a user