Autor Tópico: Script não roda no crontab? [ RESOLVIDO]  (Lida 3070 vezes)

Offline bruno contin

  • Usuário Ubuntu
  • *
  • Mensagens: 53
    • Ver perfil
Script não roda no crontab? [ RESOLVIDO]
« Online: 08 de Outubro de 2009, 08:10 »
escrevi um escript:
#!/bin/bash
#
./gbak -t -g -l /home/teksystem/dados/dadosmc.fdb /home/teksystem/dados/dadosmc.fbk -user SYSDBA -pass masterkey

DATA=`date +%a_%H`
# Dados do arquivo de backup
MAQUINA="panan"
ARQUIVO="backup-$MAQUINA-$DATA.tar.gz"
DIRETORIOS="/home/teksystem/dados"
# Cria o arquivo .tar.gz no /tmp (Temporario)
cd /tmp
find $DIRETORIOS -mtime -1 -type f -print |
tar zcf /tmp/$ARQUIVO -T -
# Acessa o FTP e coloca os arquivos
mv $ARQUIVO /opt/backup

# Remove os arquivos temporarios
rm -rf /tmp/$ARQUIVO


que coloquei no diretório do firebird
para ser executado a 12:00 meio dia e as 21:30 as nove e trinta da noite
só que ele não está sendo executado.
script:

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user   command
17 *   * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6   * * *   root   test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6   * * 7   root   test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6   1 * *   root   test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
30 21   * * *   root    cd /opt/firebird/bin/ sh backupd.sh > /dev/tty
00 12   * * *   root    cd /opt/firebird/bin/ sh backupd.sh > /dev/tty

#
« Última modificação: 08 de Outubro de 2009, 17:12 por bruno contin »

Offline clcampos

  • Administrador
  • Usuário Ubuntu
  • *****
  • Mensagens: 10.790
  • .:: User Linux #439596 ::.
    • Ver perfil
Re: Script não roda no crontab?
« Resposta #1 Online: 08 de Outubro de 2009, 11:57 »
...

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user   command
17 *   * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6   * * *   root   test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6   * * 7   root   test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6   1 * *   root   test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
30 21   * * *   root    cd /opt/firebird/bin/ sh backupd.sh > /dev/tty
00 12   * * *   root    cd /opt/firebird/bin/ sh backupd.sh > /dev/tty

#


Não faltou algo nas últimas duas linhas entre o comando cd e a chamada da rotina?

Eu deixaria assim (alterações em negrito):

Citar
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user   command
17 *   * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6   * * *   root   test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6   * * 7   root   test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6   1 * *   root   test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
30 21   * * *   root    cd /opt/firebird/bin/ &&   bash backupd.sh
00 12   * * *   root    cd /opt/firebird/bin/ &&   bash backupd.sh
« Última modificação: 08 de Outubro de 2009, 12:00 por clcampos »
Cristiano/Timóteo - MG
.: Como Fazer Perguntas de Forma Inteligente :.                
Com dúvida? pesquise!

Offline bruno contin

  • Usuário Ubuntu
  • *
  • Mensagens: 53
    • Ver perfil
Re: Script não roda no crontab?
« Resposta #2 Online: 08 de Outubro de 2009, 13:21 »
Funcionou meu amigo, muito obrigado.