From b7891f92a587287f7d28e21affa18fd7cae428ec Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Sun, 18 Feb 2018 13:00:56 +0100 Subject: [PATCH] Create blacklist.txt if not existant Closes: https://github.com/pi-hole/pi-hole/issues/1888 Signed-off-by: Ludovic Rousseau --- advanced/Scripts/list.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/advanced/Scripts/list.sh b/advanced/Scripts/list.sh index 72250afd..106f5caf 100755 --- a/advanced/Scripts/list.sh +++ b/advanced/Scripts/list.sh @@ -84,6 +84,11 @@ PoplistFile() { touch ${whitelist} fi + # Check blacklist file exists, and if not, create it + if [[ ! -f ${blacklist} ]]; then + touch ${blacklist} + fi + for dom in "${domList[@]}"; do # Logic: If addmode then add to desired list and remove from the other; if delmode then remove from desired list but do not add to the other if ${addmode}; then