Combined update

- follow ShellCheck advice:
  - use read -r
  - quote variables inside command substitution
- move dependency check to the beginning

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
Georg Pfuetzenreuter 2023-01-30 02:07:03 +01:00
parent d30630d94f
commit db343e31ce
Signed by: Georg
GPG Key ID: 1ED2F138E7E6FF57
1 changed files with 9 additions and 9 deletions

18
salt-keydiff.sh Normal file → Executable file
View File

@ -15,19 +15,19 @@ set -Ceu
minion="${1:-null}"
NOCOLOR="$(tput sgr0)"
if [ "$minion" = 'null' ]
then
printf 'Please specify the minion to diff against.\n'
exit 1
fi
if ! command -v jq >/dev/null || ! command -v salt-key >/dev/null
then
printf 'Please ensure jq and salt-key are available.\n'
exit 1
fi
key_salt="$(salt-key --out json -f $minion | jq --arg minion $minion -r '.minions_pre[$minion]')"
if [ "$minion" = 'null' ]
then
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]')"
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