Merge pull request #4794 from pi-hole/fix/mkdir_always

Always create log directory if it doesn't exist
pull/4795/head v5.11.2
Dan Schaper 2 years ago committed by GitHub
commit ef71ca05a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2796,6 +2796,11 @@ main() {
stop_service pihole-FTL &> /dev/null
if [ -d /var/log/pihole/ ]; then
mkdir /var/log/pihole/
chmod 0775 /var/log/pihole/
fi
# Special handling for pihole-FTL.log -> pihole/FTL.log
if [ -f /var/log/pihole-FTL.log ] && [ ! -L /var/log/pihole-FTL.log ]; then
# /var/log/pihole-FTL.log -> /var/log/pihole/FTL.log

Loading…
Cancel
Save