Eu tenho um cronfile /home/pi/path/
e criei um link simbólico em /etc/cron.d/cron_some_file
. Quero atualizar o arquivo cron automaticamente (quero fazer alterações no servidor para não ter que acessar o Raspberry Pi diretamente) usando wget com a seguinte linha:
1 */3 * * * root wget -m -nH --ftp-user=user --ftp-password=pass ftp://ip_addres_of_the_server/path
Se eu escrever manualmente ele baixa se algo foi alterado em alguns arquivos, mas no cronfile não funciona. Procurei no arquivo syslog e recebo os seguintes erros:
**cron[451]:Error: bad username; while reading /etc/cron.d/cron_some_file**
**cron[451]:(*system*cron_some_file) ERROR(Syntax error, this crontab file will be ignored)**
Alguém tem alguma idéia de como posso consertar isso?