From b160291753d51b983736bdd06aedd03c22a7c7db Mon Sep 17 00:00:00 2001 From: Greg Knackstedt <52809959+gknackstedt@users.noreply.github.com> Date: Tue, 5 Apr 2022 18:34:28 -0400 Subject: [PATCH 1/3] Added install logic for BlueJeans Events BlueJeans Events by Verizon only has one install package available currently, does not have architecture specific URLs. Added install logic for "bluejeansevents" starting on line 1720 --- Installomator.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Installomator.sh b/Installomator.sh index 3f64473..8a0c79b 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -1717,6 +1717,13 @@ bluejeans) appNewVersion=$(echo $downloadURL | cut -d '/' -f6) expectedTeamID="HE4P42JBGN" ;; +bluejeansevents) + name="BlueJeans Events" + type="pkg" + downloadURL=$(curl -fs "https://www.bluejeans.com/downloads" | xmllint --html --format - 2>/dev/null | grep -o "https://swdl.bluejeans.com/events/release/beta/downloads/BlueJeans_Events.pkg" ) + appNewVersion=$(echo $downloadURL | cut -d '/' -f6) + expectedTeamID="HE4P42JBGN" + ;; boxdrive) name="Box" type="pkg" From fc58b8e5a8fcb0f35236c49abff7144e2f17e7e8 Mon Sep 17 00:00:00 2001 From: Greg Knackstedt <52809959+gknackstedt@users.noreply.github.com> Date: Tue, 5 Apr 2022 18:36:41 -0400 Subject: [PATCH 2/3] Added label "bluejeansevents" Line 56. Added to call install logic for BlueJeans Events client by Verizon. --- Labels.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Labels.txt b/Labels.txt index dc91bee..b6e6604 100644 --- a/Labels.txt +++ b/Labels.txt @@ -53,6 +53,7 @@ bettertouchtool bitwarden blender bluejeans +bluejeansevents boxdrive boxsync boxtools From 24bbe426ad967e72c9deb82d41689849839b156c Mon Sep 17 00:00:00 2001 From: Greg Knackstedt <52809959+gknackstedt@users.noreply.github.com> Date: Tue, 5 Apr 2022 18:57:24 -0400 Subject: [PATCH 3/3] Removed version check logic from "bluejeanevents" Application does not have a version number in it's install .pkg --- Installomator.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/Installomator.sh b/Installomator.sh index 8a0c79b..3c45864 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -1721,7 +1721,6 @@ bluejeansevents) name="BlueJeans Events" type="pkg" downloadURL=$(curl -fs "https://www.bluejeans.com/downloads" | xmllint --html --format - 2>/dev/null | grep -o "https://swdl.bluejeans.com/events/release/beta/downloads/BlueJeans_Events.pkg" ) - appNewVersion=$(echo $downloadURL | cut -d '/' -f6) expectedTeamID="HE4P42JBGN" ;; boxdrive)