mirror of
https://github.com/MLBZ521/MacAdmin.git
synced 2026-02-03 14:03:26 +00:00
v1.1.1 = Fixed Syntax Issue
Whoops, forgot a `; then`
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
###################################################################################################
|
||||
# Script Name: jamf_ea_CrowdStrikeStatus.sh
|
||||
# By: Zack Thompson / Created: 1/8/2019
|
||||
# Version: 1.1.0 / Updated: 1/30/2019 / By: ZT
|
||||
# Version: 1.1.1 / Updated: 1/31/2019 / By: ZT
|
||||
#
|
||||
# Description: This script gets the configuration of Crowd Strike, if installed.
|
||||
#
|
||||
@@ -29,7 +29,7 @@ returnResult=""
|
||||
|
||||
echo "Checking if Crowd Strike is installed..."
|
||||
|
||||
if [[ -e "/Library/CS/falconctl" ]]
|
||||
if [[ -e "/Library/CS/falconctl" ]]; then
|
||||
|
||||
# Get the customer ID and compare.
|
||||
csCustomerID=$( /usr/sbin/sysctl -n cs.customerid 2>&1 )
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
###################################################################################################
|
||||
# Script Name: jamf_ea_CrowdStrikeVersion.sh
|
||||
# By: Zack Thompson / Created: 1/8/2019
|
||||
# Version: 1.1.0 / Updated: 1/30/2019 / By: ZT
|
||||
# Version: 1.1.1 / Updated: 1/31/2019 / By: ZT
|
||||
#
|
||||
# Description: This script gets the version of Crowd Strike, if installed.
|
||||
#
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
echo "Checking if Crowd Strike is installed..."
|
||||
|
||||
if [[ -e "/Library/CS/falconctl" ]]
|
||||
if [[ -e "/Library/CS/falconctl" ]]; then
|
||||
|
||||
# Querty for the version string
|
||||
echo "Checking the Crowd Strike Version..."
|
||||
|
||||
Reference in New Issue
Block a user