mirror of
https://github.com/moparisthebest/pi-hole
synced 2024-11-22 09:12:16 -05:00
Merge pull request #45 from jofrep/IP-as-input-parameter
Allow external IP as an input script parameter
This commit is contained in:
commit
533f707578
@ -3,7 +3,12 @@
|
|||||||
# Compiles a list of ad-serving domains by downloading them from multiple sources
|
# 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
|
# This script should only be run after you have a static IP address set on the Pi
|
||||||
piholeIP=$(hostname -I)
|
piholeIP="$1"
|
||||||
|
|
||||||
|
if [ -n "$piholeIP"]; then
|
||||||
|
piholeIP=$(hostname -I|xargs)
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Ad-list sources--one per line in single quotes
|
# Ad-list sources--one per line in single quotes
|
||||||
sources=('https://adaway.org/hosts.txt'
|
sources=('https://adaway.org/hosts.txt'
|
||||||
|
Loading…
Reference in New Issue
Block a user