diff --git a/upd/fix_cron.sh b/upd/fix_cron.sh deleted file mode 100755 index aeb172f97..000000000 --- a/upd/fix_cron.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -# Check if there is no crontab -if [ ! -e "/var/spool/cron" ]; then - exit -fi - -# Fix ownership and permissions -for crn_tab in $(ls /var/spool/cron/); do - chown $crn_tab:$crn_tab /var/spool/cron/$crn_tab - chmod 600 /var/spool/cron/$crn_tab -done - -exit -