1
0
mirror of https://github.com/moparisthebest/pi-hole synced 2024-11-22 01:02:15 -05:00

if whitelist.txt doesn't exist, create it

This commit is contained in:
Jacob Salmela 2015-11-27 18:29:44 -06:00
parent 3b9f7031d5
commit a2cddda590

View File

@ -1,5 +1,9 @@
#!/bin/bash
if [[ ! -f /etc/pihole/whitelist.txt ]];then
touch /etc/pihole/whitelist.txt
fi
if [ $# = 0 ]; then
echo "Immediately whitelists one or more domains."
echo "Usage: whitelist.sh domain1 [domain2 ...]"