mirror of
https://github.com/linuxserver/docker-transmission.git
synced 2025-11-01 17:35:46 +01:00
21 lines
553 B
Bash
21 lines
553 B
Bash
#!/usr/bin/with-contenv bash
|
|
|
|
BLOCKLIST_ENABLED=`jq -r '.["blocklist-enabled"]' /config/settings.json`
|
|
BLOCKLIST_URL=`jq -r '.["blocklist-url"]' /config/settings.json | sed 's/\&/\&/g'`
|
|
|
|
if [ $BLOCKLIST_ENABLED == true ]; then
|
|
mkdir -p /tmp/blocklists
|
|
rm -rf /tmp/blocklists/*
|
|
cd /tmp/blocklists
|
|
wget -q -O blocklist.gz "$BLOCKLIST_URL"
|
|
if [ $? == 0 ]; then
|
|
gunzip *.gz
|
|
if [ $? == 0 ]; then
|
|
chmod go+r *
|
|
rm -rf /config/blocklists/*
|
|
cp /tmp/blocklists/* /config/blocklists
|
|
s6-svc -h /var/run/s6/services/transmission
|
|
fi
|
|
fi
|
|
fi
|