fixes issue with crontab file permission

This commit is contained in:
Serghey Rodin 2013-09-16 10:31:20 +03:00
commit f9141487c8

View file

@ -493,7 +493,8 @@ sync_cron_jobs() {
done < $USER_DATA/cron.conf
# Set proper permissions
chown 600 $sys_cron
chown $user:$user $sys_cron
chmod 600 $sys_cron
}