mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Place errors on newline
This commit is contained in:
parent
05faa7bdf2
commit
b9bcfe36ff
1 changed files with 3 additions and 3 deletions
|
@ -345,7 +345,7 @@ gravity_ParseFileIntoDomains() {
|
|||
output=$( { mv "${source}" "${destination}"; } 2>&1 )
|
||||
|
||||
if [[ ! -e "${destination}" ]]; then
|
||||
echo -e " ${CROSS} Unable to move tmp file to ${piholeDir}
|
||||
echo -e "\\n ${CROSS} Unable to move tmp file to ${piholeDir}
|
||||
${output}"
|
||||
gravity_Cleanup "error"
|
||||
fi
|
||||
|
@ -521,7 +521,7 @@ gravity_ParseBlacklistDomains() {
|
|||
status="$?"
|
||||
|
||||
if [[ "${status}" -ne 0 ]]; then
|
||||
echo -e " ${CROSS} Unable to move ${accretionDisc} from ${piholeDir}\\n ${output}"
|
||||
echo -e "\\n ${CROSS} Unable to move ${accretionDisc} from ${piholeDir}\\n ${output}"
|
||||
gravity_Cleanup "error"
|
||||
fi
|
||||
}
|
||||
|
@ -535,7 +535,7 @@ gravity_ParseUserDomains() {
|
|||
gravity_ParseDomainsIntoHosts "${blacklistFile}" "${blackList}.tmp"
|
||||
# Copy the file over as /etc/pihole/black.list so dnsmasq can use it
|
||||
mv "${blackList}.tmp" "${blackList}" 2> /dev/null || \
|
||||
echo -e " ${CROSS} Unable to move ${blackList##*/}.tmp to ${piholeDir}"
|
||||
echo -e "\\n ${CROSS} Unable to move ${blackList##*/}.tmp to ${piholeDir}"
|
||||
}
|
||||
|
||||
# Trap Ctrl-C
|
||||
|
|
Loading…
Reference in a new issue