Script Bash não está funcionando no crontab

0

Estou tentando criar um script Bash que verifique se baixei alguma coisa e, se tiver, ele deverá verificar isso. Estou fazendo o lançamento na inicialização usando o crontab, mas essa parte não funciona.

Este é o meu código:

#!/bin/bash

inotifywait ~/Downloads -m -r -e modify -e moved_to --format '%w%f' | while read file
do
    $(clamscan --bell --recursive --max-filesize=99999 --log log/myLogs.txt $file)
    CLAMSCAN="$?"

    if [ $CLAMSCAN -eq 1 ]; then
        $(xmessage -buttons Ok:0,"Remove":1,"View Logs":2 -default Ok -center "Infected file: $file is found...")
        CHOICE="$?"

        if [ $CHOICE -eq 1 ]; then
            $(rm -r $file)
        elif [ $CHOICE -eq 2 ]; then
            $(xmessage -buttons Ok:0 -default Ok -center -file log/myLogs.txt)
        fi      
    fi
done

Meu crontab:

# Edit this file to introduce tasks to be run by cron.
# 
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
# 
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').# 
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
# 
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
# 
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
# 
# For more information see the manual pages of crontab(5) and cron(8)
# 
# m h  dom mon dow   command
SHELL=/bin/sh
@reboot sh $HOME/.custom_security/Downloads_sec.sh

Quando altero o diretório para, por exemplo, '/' e, em seguida, executo sh $HOME/.custom_security/Downloads_sec.sh , recebo este erro:

    Setting up watches.  Beware: since -r was given, this may take a while!
Watches established.
ERROR: Can't open log/myLogs.txt in append mode (check permissions!).
ERROR: Problem with internal logger.

O script funciona bem como script autônomo!

    
por O'Niel 21.01.2017 / 17:26

1 resposta

3

O problema é com esta linha:

clamscan --bell --recursive --max-filesize=99999 --log log/myLogs.txt $file

Isso tenta gravar em log / myLogs.txt. Se você estiver em seu diretório pessoal /home/oneill , ele tentará gravar em /home/oneill/log/myLogs.txt , que provavelmente é o local correto. Se você estiver no diretório raiz / , ele tentará gravar em /log/myLogs.txt , para o qual não possui as permissões adequadas.

Use caminhos absolutos ou coloque um cd /home/oneill em algum lugar no início do script.

    
por 21.01.2017 / 17:54