show_classification.sh "PE Master" - to see the full json rule / configuration for the "PE Master" classification group in the console
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/bash | |
# simple 3.7 NC classifier commands | |
declare -x PE_CERT=$(/opt/puppet/bin/puppet agent --configprint hostcert) | |
declare -x PE_KEY=$(/opt/puppet/bin/puppet agent --configprint hostprivkey) | |
declare -x PE_CA=$(/opt/puppet/bin/puppet agent --configprint localcacert) | |
declare -x NC_CURL_OPT="-s --cacert $PE_CA --cert $PE_CERT --key $PE_KEY --insecure" | |
find_guid() | |
{ | |
echo $(curl $NC_CURL_OPT --insecure https://localhost:4433/classifier-api/v1/groups| python -m json.tool |grep -C 2 "$1" | grep "id" | cut -d: -f2 | sed 's/[\", ]//g') | |
} | |
show_classification() | |
{ | |
curl $NC_CURL_OPT --insecure https://localhost:4433/classifier-api/v1/groups/$1| python -m json.tool | |
} | |
show_classification `find_guid "$1"` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment