Eu configurei o crontab
assim:
*/5 0 * * * /www/permitChat.sh
e o /www/permitChat.sh
é este:
# We are setting the name of file
# in the variable along with complete path.
sFilePath='date +\/www\/ChatLogs\/%Y\/%m/%d_%m_%Y.txt'
# First we set its permissions to
# readable by all users, and then
# modify them to be writable by only root.
chmod a=r $sFilePath
chmod u+w $sFilePath
ls -lh $sFilePath
O problema que estou enfrentando é que o cron é executado depois das 12:00 todos os dias, em vez de executar às 00:00 às 01:00, a cada 5 minutos.
O que poderia estar errado? Todas as variáveis do meu sistema parecem estar sincronizadas.