From fc86d345fe93d5193ff709774729290daef9ea5c Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@freedombone.net>
Date: Wed, 29 Aug 2018 13:28:04 +0100
Subject: [PATCH] Permissions on backup log

---
 src/freedombone-installer | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/freedombone-installer b/src/freedombone-installer
index 1ccf1385a..858573b23 100755
--- a/src/freedombone-installer
+++ b/src/freedombone-installer
@@ -1036,6 +1036,7 @@ function initiate_automatic_backup {
         if [ "$webadmin_prev_hour" -ne "$backup_hour" ]; then
             touch "$backup_file"
             echo $"Backup initiated $(date)" >> "$webadmin_install_dir/autobackup.log"
+            chown www-data:www-data "$webadmin_install_dir/autobackup.log"
             running_auto_backup=1
         fi
     fi
@@ -1195,6 +1196,7 @@ function backup_and_restore {
             if [ $running_auto_backup ]; then
                 backup_name=$'scheduled'
                 date >> "$webadmin_install_dir/autobackup.log"
+                chown www-data:www-data "$webadmin_install_dir/autobackup.log"
                 running_auto_backup=
             fi
 
-- 
GitLab