mirror of
https://github.com/PurpleComputing/mdmscripts.git
synced 2026-02-03 06:03:26 +00:00
13 lines
246 B
Bash
13 lines
246 B
Bash
#!/bin/sh
|
|
cd /Library/Application\ Support/Purple/
|
|
if [ "$SHOWDIALOG" == "Y" ]; then
|
|
echo "Dialog will open"
|
|
./zt-dialog.sh &
|
|
./join-zt-network.sh
|
|
exit 0
|
|
else
|
|
echo "Dialog will not open"
|
|
./join-zt-network.sh
|
|
exit 0
|
|
fi
|