ipmitool -I lanplus -H <iDRAC-IP> -U <iDRAC-USER> -P <iDRAC-PASSWORD> sensor reading "Ambient Temp" "FAN 1 RPM" "FAN 2 RPM" "FAN 3 RPM"
| #!/bin/zsh | |
| ## postinstall | |
| pathToScript=$0 | |
| pathToPackage=$1 | |
| targetLocation=$2 | |
| targetVolume=$3 | |
| # This postinstall script for Composer creates the following | |
| # A LaunchDaemon that starts a separate script to run a Jamf Pro policy command |
| #!/bin/bash | |
| case $# in | |
| 0) | |
| echo "Usage: $0 {start|stop}" | |
| exit 1 | |
| ;; | |
| 1) | |
| case $1 in | |
| start) |