You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffmyk-ansible/roles/install_fastd/files/verify.sh

7 lines
110 B
Bash

#!/bin/sh
if grep -q $PEER_KEY /etc/fastd_blacklist; then
echo $PEER_KEY blacklisted
exit 1
fi
exit 0