This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # server connection information | |
| URL="https://jss.talkingmoose.net:8443" | |
| userName="JSSAPI-Editor" | |
| password="password" | |
| # XML data to upload | |
| THExml="<activation_code> | |
| <organization_name>Talking Moose Industries</organization_name> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Usage: ./no_automount My\ Disk | |
| NAME=$1 | |
| if [ -z "$NAME" ] ; then | |
| echo "Usage: no_automount {Disk Name}" | |
| exit 1 | |
| fi | |
| FSTAB=/etc/fstab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Joel Bruner - EA Grabber: Surreptitiously grabs Jamf Extension Attributes (EAs) during recon | |
| #touch file for debug | |
| [ -f /tmp/debug ] && set -x | |
| ############# | |
| # VARIABLES # | |
| ############# |
OlderNewer