2017-05-03 102 views
0

我有一個按root運行的cron作業,每小時檢查一次是否存在tripwire違例。無論我是否違規,它每小時都會發送一封電子郵件給我。如果存在違規行爲,則包括該報告。如果沒有違規行爲,它會向我發送一封空白電子郵件,其中只有主題行。Bash腳本發送電子郵件,即使它不應該

這裏的腳本:

#!/bin/bash 

# Save report 
tripwire --check > /tmp/twreport 

# Count violations 
v=`grep -c 'Total violations found: 0' /tmp/twreport` 

# Send report 
if [ "$v" -eq 0 ]; then 
     mail -s "[tripwire] Report for `uname -n`" [email protected] < /tmp/twreport 
fi 
+1

如果它發送空白電子郵件,似乎表示'/ tmp/twreport'爲空。這肯定會導致'v'被設置爲零。建議您調試實際寫入該文件的內容。 – paxdiablo

+0

該文件被寫入 - 它顯示0次違規或x次違規。 v是0或1.當我手動運行它時,它工作正常,只有在cron中不起作用。 – MarkH

+0

終端和cron工作之間的環境差異很大,所以這可能是問題。看例如http://stackoverflow.com/questions/1972690/cannot-get-php-cron-script-to-run/1972763#1972763 – paxdiablo

回答

0

我建議改變代碼

if [ -f /tmp/twreport ] # Check file exists 
then 
v=$(grep -c '^Total violations found: 0$' /tmp/twreport) 
#Not suggested using legacy backticks 
if [ "$v" -eq 0 ]; then 
     mail -s "[tripwire] Report for $(uname -n)" [email protected] < /tmp/twreport 
fi 
fi 

你把腳本行前最後設置在cron路徑。像

# Setting PATH 
PATH=/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/path/to/tripwire:/and/so/on 
# Now,set up the cron-job for the script 
0  11   *    *   0  /path/to/script 
0

嘗試用雙引號包圍,並使用完整路徑

v="`/bin/grep -c 'Total violations found: 0' /tmp/twreport`" 

if [ "$v" == "0" ]; then # or = instead of == based on your shell 

如果這些不工作驗證搜索詞。我在'0'前發現了兩個空格'found:0'

+0

'''引號的使用在這裏不是問題,因爲'grep -c'總是輸出一個數字(不包含空格或引用可以修復的其他奇怪的東西)。 – paxdiablo