From 885069d4406d53fcecee2b74e81808d4f4137752 Mon Sep 17 00:00:00 2001 From: Jofre Palau Date: Fri, 18 Sep 2015 23:06:29 +0200 Subject: [PATCH] Allow external IP as an input script parameter: ./gravity.sh 123.123.123.123 --- gravity.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gravity.sh b/gravity.sh index 2bef29b7..c90501f0 100755 --- a/gravity.sh +++ b/gravity.sh @@ -3,7 +3,12 @@ # Compiles a list of ad-serving domains by downloading them from multiple sources # This script should only be run after you have a static IP address set on the Pi -piholeIP=$(hostname -I) +piholeIP="$1" + +if [[ "$piholeIP" == "" ]]; then + piholeIP=$(hostname -I) +fi + # Ad-list sources--one per line in single quotes sources=('https://adaway.org/hosts.txt' @@ -128,7 +133,7 @@ function gravity_advanced() echo "** $numberOf unique domains trapped in the event horizon." # Format domain list as "192.168.x.x domain.com" echo "** Formatting domains into a HOSTS file..." - cat $origin/$eventHorizon | awk '{sub(/\r$/,""); print "'"$piholeIP"'" $0}' > $origin/$accretionDisc + cat $origin/$eventHorizon | awk '{sub(/\r$/,""); print "'"$piholeIP "'" $0}' > $origin/$accretionDisc # Copy the file over as /etc/pihole/gravity.list so dnsmasq can use it sudo cp $origin/$accretionDisc $adList kill -HUP $(pidof dnsmasq)