Revert "Ignore commented lines when reading PRIVACYLEVEL from config file"

This commit is contained in:
Adam Warner 2023-03-22 21:52:39 +00:00 committed by GitHub
parent fb032ea6e7
commit 58275ecd13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 38 deletions

View file

@ -44,7 +44,7 @@ addOrEditKeyValPair() {
}
#######################
# Takes two arguments: file and key.
# Takes two arguments: file, and key.
# Adds a key to target file
#
# Example usage:
@ -68,7 +68,7 @@ addKey(){
}
#######################
# Takes two arguments: file and key.
# Takes two arguments: file, and key.
# Deletes a key or key/value pair from target file
#
# Example usage:
@ -80,24 +80,6 @@ removeKey() {
sed -i "/^${key}/d" "${file}"
}
#######################
# Takes two arguments: file and key.
# Returns the value of a given key from target file
# - ignores all commented lines
# - only returns the first value if multiple identical keys exist
#
#
# Example usage:
# getVal "/etc/pihole/setupVars.conf" "PIHOLE_DNS_1"
#######################
getVal() {
local file="${1}"
local key="${2}"
local value
value=$(sed -e '/^[[:blank:]]*#/d' "${file}" | grep "${key}" | awk -F "=" 'NR==1{printf$2}')
printf "%s" "$value"
}
#######################
# returns FTL's current telnet API port based on the setting in /etc/pihole-FTL.conf