From: Zoltán Felleg Date: Wed, 2 Jul 2025 19:51:57 +0000 (+0200) Subject: Updated updatecerts.sh (added ssh-agent start command). X-Git-Url: http://git.useribm.hu/?a=commitdiff_plain;h=089324a1f3177c1cc723010e42224f9daf68ce4a;p=user-ssh.git Updated updatecerts.sh (added ssh-agent start command). --- diff --git a/updatecerts.sh b/updatecerts.sh index 01fe35e..d39b7dd 100755 --- a/updatecerts.sh +++ b/updatecerts.sh @@ -5,6 +5,7 @@ ssh-add -l | grep --quiet --word-regexp "user-CA" if [ $? -ne 0 ] then echo "user-CA must be added to ssh-agent (ssh-add user-CA)." >&2 + echo "if it is not running, execute: eval \$(ssh-agent)" >&2 exit 1 fi CERT_YEAR_QUARTER=$(echo $1 | grep '^20[0-9][0-9]q[1-4]$')