mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Use strict grep instead of regex for duplicates
Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
parent
55175087c4
commit
cffb4de83b
1 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ AddDomain() {
|
|||
bool=true
|
||||
# Is the domain in the list?
|
||||
# Search only for exactly matching lines
|
||||
grep -E "^${domain}$" "${regexlist}" > /dev/null 2>&1 || bool=false
|
||||
grep -Fx "${domain}" "${regexlist}" > /dev/null 2>&1 || bool=false
|
||||
|
||||
if [[ "${bool}" == false ]]; then
|
||||
if [[ "${verbose}" == true ]]; then
|
||||
|
@ -177,7 +177,7 @@ RemoveDomain() {
|
|||
[[ -z "${type}" ]] && type="--wildcard-only"
|
||||
bool=true
|
||||
# Is it in the list?
|
||||
grep -E "^${domain}$" "${regexlist}" > /dev/null 2>&1 || bool=false
|
||||
grep -Fx "${domain}" "${regexlist}" > /dev/null 2>&1 || bool=false
|
||||
if [[ "${bool}" == true ]]; then
|
||||
# Remove it from the other one
|
||||
echo -e " ${INFO} Removing $1 from regex list..."
|
||||
|
|
Loading…
Reference in a new issue