Implement functional Blacklist Script

This commit is contained in:
Bastian 2019-03-27 14:46:44 +01:00
parent 8f9d46beaf
commit 282576c086
1 changed files with 10 additions and 2 deletions

View File

@ -1,2 +1,10 @@
#!/bin/sh
exit 0
#!/bin/bash
PEER_KEY=$1
PEER_ADDRESS=$2
if /bin/grep -Fq $PEER_KEY /opt/ffrgb_cty/vpn-blacklist/blacklist.json; then
echo "BANNED KEY: $PEER_KEY $PEER_ADDRESS"
exit 1
else
echo "CLEAN KEY: $PEER_KEY "
exit 0
fi