mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Don't delete lines containing /
as they should count as invalid
Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
parent
cc17fe18a9
commit
2a0f720153
1 changed files with 2 additions and 4 deletions
|
@ -772,9 +772,8 @@ gravity_ParseFileIntoDomains() {
|
||||||
# 4) Remove lines starting with [ (ABP Header)
|
# 4) Remove lines starting with [ (ABP Header)
|
||||||
# 5) Remove lines containing ABP extended CSS selectors ("##", "#!#", "#@#", "#?#")
|
# 5) Remove lines containing ABP extended CSS selectors ("##", "#!#", "#@#", "#?#")
|
||||||
# 6) Remove comments (text starting with "#", include possible spaces before the hash sign)
|
# 6) Remove comments (text starting with "#", include possible spaces before the hash sign)
|
||||||
# 7) Remove lines containing "/"
|
# 7) Remove leading tabs, spaces, etc. (Also removes leading IP addresses)
|
||||||
# 8) Remove leading tabs, spaces, etc. (Also removes leading IP addresses)
|
# 8) Remove empty lines
|
||||||
# 9) Remove empty lines
|
|
||||||
|
|
||||||
sed -i -r \
|
sed -i -r \
|
||||||
-e 's/\r$//' \
|
-e 's/\r$//' \
|
||||||
|
@ -782,7 +781,6 @@ gravity_ParseFileIntoDomains() {
|
||||||
-e 's/\s*\[.*//g' \
|
-e 's/\s*\[.*//g' \
|
||||||
-e '/\#[!|?|@]{0,1}\#/d' \
|
-e '/\#[!|?|@]{0,1}\#/d' \
|
||||||
-e 's/\s*#.*//g' \
|
-e 's/\s*#.*//g' \
|
||||||
-e '/(\/).*$/d' \
|
|
||||||
-e 's/^.*\s+//g' \
|
-e 's/^.*\s+//g' \
|
||||||
-e '/^$/d' "${destination}"
|
-e '/^$/d' "${destination}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue