fastd-blacklist.sh.j2 177 B

12345678910111213
  1. #!/bin/bash
  2. #
  3. # This file is managed by ansible. Do not edit by hand!
  4. #
  5. PEER_KEY=$1
  6. if /bin/grep -Fq $PEER_KEY /etc/fastd/fastd-blacklist.json; then
  7. exit 1
  8. else
  9. exit 0
  10. fi