Merge pull request #1022 from SkynetLabs/sevey/blocklist-manual-script
Fix server list and use common NGINX command
This commit is contained in:
commit
82d22c2081
|
@ -1,5 +1,10 @@
|
||||||
#! /usr/bin/env bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
# This script is meant to be used when manually adding a skylink to the
|
||||||
|
# blocklist on all the skynet web portals. The automatic script that is used to
|
||||||
|
# continuously sync a google sheets list with the blocklist on the web portals
|
||||||
|
# is /setup-scripts/blocklist-airtable.py
|
||||||
|
|
||||||
set -e # exit on first error
|
set -e # exit on first error
|
||||||
|
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
|
@ -32,21 +37,23 @@ fi
|
||||||
#########################################################################
|
#########################################################################
|
||||||
# iterate through all servers, block the skylinks and purge it from cache
|
# iterate through all servers, block the skylinks and purge it from cache
|
||||||
#########################################################################
|
#########################################################################
|
||||||
declare -a servers=( "eu-ger-1.siasky.net" "eu-ger-2.siasky.net" "eu-ger-3.siasky.net" "eu-ger-4.siasky.net" "eu-ger-5.siasky.net" "eu-ger-6.siasky.net" "eu-ger-7.siasky.net" "eu-ger-8siasky.net"
|
declare -a servers=( "eu-ger-1.siasky.net" "eu-ger-2.siasky.net" "eu-ger-3.siasky.net" "eu-ger-4.siasky.net" "eu-ger-5.siasky.net" "eu-ger-6.siasky.net" "eu-ger-7.siasky.net" "eu-ger-8.siasky.net"
|
||||||
"eu-fin-1.siasky.net" "eu-fin-2.siasky.net" "eu-fin-3.siasky.net" "eu-fin-4.siasky.net"
|
"eu-fin-1.siasky.net" "eu-fin-2.siasky.net" "eu-fin-3.siasky.net" "eu-fin-4.siasky.net"
|
||||||
"eu-pol-1.siasky.net" "eu-pol-2.siasky.net" "eu-pol-3.siasky.net"
|
"eu-pol-1.siasky.net" "eu-pol-2.siasky.net" "eu-pol-3.siasky.net"
|
||||||
"us-or-1.siasky.net" "us-or-2.siasky.net"
|
"us-or-1.siasky.net" "us-or-2.siasky.net"
|
||||||
"us-pa-1.siasky.net" "us-pa-2.siasky.net"
|
"us-pa-1.siasky.net" "us-pa-2.siasky.net"
|
||||||
"us-va-1.siasky.net" "us-va-2.siasky.net" "us-va-3.siasky.net"
|
"us-va-1.siasky.net" "us-va-2.siasky.net" "us-va-3.siasky.net"
|
||||||
"as-hk-1.siasky.net"
|
"as-hk-1.siasky.net"
|
||||||
"siasky.xyz" "siasky.dev")
|
"siasky.xyz" "dev1.siasky.dev" "dev2.siasky.dev" "dev3.siasky.dev")
|
||||||
for server in "${servers[@]}";
|
for server in "${servers[@]}";
|
||||||
do
|
do
|
||||||
for skylink in "${skylinks[@]}";
|
for skylink in "${skylinks[@]}";
|
||||||
do
|
do
|
||||||
echo ".. ⌁ Blocking skylink ${skylink} on ${server}"
|
echo ".. ⌁ Blocking skylink ${skylink} on ${server}"
|
||||||
|
cached_files_command="find /data/nginx/cache/ -type f | xargs -r grep -Elsq '^Skynet-Skylink: ${skylink}'"
|
||||||
ssh -q -t user@${server} "docker exec sia siac skynet blocklist add $skylink && docker exec nginx curl -s -i -X PURGE http://localhost/$skylink | egrep \"^(OK|HTTP|X-)\""
|
ssh -q -t user@${server} "docker exec -it nginx bash -c ${cached_files_command} | xargs -r rm"
|
||||||
|
echo ".. ⌁ Skylink ${skylink} Blocked on ${server}"
|
||||||
|
echo "--------------------------------------------"
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Reference in New Issue