Created
September 30, 2019 23:22
-
-
Save pirkla/92a75e24b985f0e51b944cb38616b9ae to your computer and use it in GitHub Desktop.
This file contains 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/sh | |
# This is an example only, and is not a valid script | |
# Set the url and credentials | |
jssURL="https://tryitout.jamfcloud.com/JSSResource" | |
endPoint="/computers" | |
jssUser="admin" | |
jssPass="password" | |
# get the ids from a given endpoint | |
ids=$(curl -H "Content-Type: application/xml" -ksu "$jssUser":"$jssPass" "${jssURL}${endPoint}" -X GET | xpath "//id[not(ancestor::site)]" 2> /dev/null | sed s/'<id>'//g | sed s/'<\/id>'/','/g) | |
# parse those ids into an array | |
IFS=', ' read -r -a allIDs <<< ${ids} | |
# initialize a variable to read names into | |
gatherName="{" | |
# loop over each id | |
for curID in ${allIDs[@]}; | |
do | |
# get the name of each computer from each id | |
value=$(curl -H "Accept : text/xml" -H "Content-Type: text/xml" -ksu "$jssUser":"$jssPass" "$jssURL/computers/id/$curID" -X GET | xpath //computer/general/name/text\(\) 2> /dev/null) | |
# if the name isn't null then add it to the gatherName string. | |
if [ "$value" != null ]; then | |
gatherName+="$value," | |
fi | |
done | |
# remove the final comma from the gatherName string | |
gatherName=$(echo $gatherName | sed 's/.$//') | |
gatherName+="}" | |
# update computers by name with an asset tag. | |
curl -H "Content-Type: text/xml" -ku $jssUser:$jssPass "${jssURL}""/computers/name/""${gatherName// /%20}" -X PUT -d "<computer><general><asset_tag>modme</asset_tag></general></computer>" &> /tmp/error.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment