5 lines
138 B
Bash
5 lines
138 B
Bash
|
if grep -q rsa net/scripts/solana-user-authorized_keys.sh; then
|
||
|
echo "No rsa keys allowed, small key sizes are insecure."
|
||
|
exit 1
|
||
|
fi
|