mirror of
https://github.com/MLBZ521/MacAdmin.git
synced 2026-02-07 15:42:15 +00:00
85 lines
2.3 KiB
Bash
85 lines
2.3 KiB
Bash
#!/bin/bash
|
|
|
|
###################################################################################################
|
|
# Script Name: build_CrowdStrike.sh
|
|
# By: Zack Thompson / Created: 1/8/2019
|
|
# Version: 1.0.0 / Updated: 1/8/2019 / By: ZT
|
|
#
|
|
# Description: This script uses munkipkg to build an CrowdStrike package.
|
|
#
|
|
###################################################################################################
|
|
|
|
echo "***** Build CrowdStrike process: START *****"
|
|
|
|
##################################################
|
|
# Define Variables
|
|
|
|
softwareTitle="CrowdStrike"
|
|
|
|
# Switches
|
|
switch1="${1}" # Build Type
|
|
switch2="${2}" # Version
|
|
switch3="${3}" # Version Value
|
|
|
|
# Set working directory
|
|
scriptDirectory=$(/usr/bin/dirname "$(/usr/bin/stat -f "$0")")
|
|
|
|
##################################################
|
|
# Setup Functions
|
|
|
|
function getHelp {
|
|
echo "
|
|
usage: build_CrowdStrike.sh [-install] [-update] [-version] <value> -help
|
|
|
|
Info: Uses munkipkg to build a package for use in Jamf.
|
|
|
|
Actions:
|
|
-install Builds a package to install a new version
|
|
Example: build_CrowdStrike.sh -install -version latest
|
|
|
|
-update Builds a package to install a patch
|
|
Example: build_CrowdStrike.sh -update -version latest
|
|
|
|
-help Displays this help text.
|
|
Example: build_CrowdStrike.sh -help
|
|
"
|
|
}
|
|
|
|
function munkiBuild {
|
|
/usr/libexec/PlistBuddy -c "set identifier com.github.mlbz521.pkg.${softwareTitle}" "${scriptDirectory}"/build-info.plist
|
|
/usr/libexec/PlistBuddy -c "set name ${softwareTitle}-\${version}.pkg" "${scriptDirectory}"/build-info.plist
|
|
/usr/libexec/PlistBuddy -c "set version $switch3" "${scriptDirectory}"/build-info.plist
|
|
|
|
munkipkg "${scriptDirectory}" > /dev/null
|
|
|
|
# Function cleanUp
|
|
cleanUp
|
|
}
|
|
|
|
function cleanUp {
|
|
/bin/rm "${scriptDirectory}"/scripts/postinstall
|
|
/bin/mv "${scriptDirectory}"/scripts/* "${scriptDirectory}"/build/$switch3/
|
|
}
|
|
|
|
##################################################
|
|
# Find out what we want to do...
|
|
|
|
echo "Build Type: $switch1"
|
|
echo "Version: $switch3"
|
|
|
|
case $switch1 in
|
|
-install )
|
|
/bin/cp "${scriptDirectory}"/install_CrowdStrike.sh "${scriptDirectory}"/scripts/postinstall
|
|
/bin/mv "${scriptDirectory}"/build/$switch3/* "${scriptDirectory}"/scripts/
|
|
|
|
# Function munkiBuild
|
|
munkiBuild
|
|
;;
|
|
-help | * )
|
|
# Function getHelp
|
|
getHelp
|
|
;;
|
|
esac
|
|
|
|
echo "***** Build CrowdStrike process: COMPLETE *****"
|
|
exit 0 |