diff options
Diffstat (limited to 'salt-keydiff.sh')
-rwxr-xr-x[-rw-r--r--] | salt-keydiff.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/salt-keydiff.sh b/salt-keydiff.sh index 92fb112..b4de6a9 100644..100755 --- a/salt-keydiff.sh +++ b/salt-keydiff.sh @@ -15,19 +15,19 @@ set -Ceu minion="${1:-null}" NOCOLOR="$(tput sgr0)" -if [ "$minion" = 'null' ] +if ! command -v jq >/dev/null || ! command -v salt-key >/dev/null then - printf 'Please specify the minion to diff against.\n' + printf 'Please ensure jq and salt-key are available.\n' exit 1 fi -if ! command -v jq >/dev/null || ! command -v salt-key >/dev/null +if [ "$minion" = 'null' ] then - printf 'Please ensure jq and salt-key are available.\n' + printf 'Please specify the minion to diff against.\n' exit 1 fi -key_salt="$(salt-key --out json -f $minion | jq --arg minion $minion -r '.minions_pre[$minion]')" +key_salt="$(salt-key --out json -f "$minion" | jq --arg minion "$minion" -r '.minions_pre[$minion]')" if [ "$key_salt" = 'null' ] then @@ -35,8 +35,8 @@ then exit 2 fi -printf 'Enter fingerprint to diff against\n' -read key_user +printf 'Enter fingerprint to diff against (run `salt-call --local key.finger` on the minion)\n' +read -r key_user if [ "$key_salt" = "$key_user" ] then |