Use double quotes to precent globbing and word splitting

Signed-off-by: DL6ER <dl6er@dl6er.de>
pull/1929/head
DL6ER 6 years ago
parent 5d274008db
commit b8eaa9a527
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD

@ -16,9 +16,9 @@ source ${colfile}
# Constructed to return nothing when
# a) the setting is not present in the config file, or
# b) the setting is commented out (e.g. "#DBFILE=...")
DBFILE=$(sed -n -e 's/^\s^.DBFILE\s*=\s*//p' /etc/pihole/pihole-FTL.conf)
DBFILE="$(sed -n -e 's/^\s^.DBFILE\s*=\s*//p' /etc/pihole/pihole-FTL.conf)"
# Test for empty string. Use standard path in this case.
if [ -z $DBFILE ]; then
if [ -z "$DBFILE" ]; then
DBFILE="/etc/pihole/pihole-FTL.db"
fi

Loading…
Cancel
Save