adjust staubsauger.sh to work on Arch Linux
This commit is contained in:
parent
66b74d1619
commit
a5fb52c0f9
1 changed files with 3 additions and 4 deletions
|
@ -8,7 +8,6 @@ to_report='Admin email <@>'
|
|||
from='Staubsauger-Erinnerung <staubsauger-erinnerung@oe7drt.com>';
|
||||
subject=`printf "Staubsauger-Erinnerung vom %s" "$date"`;
|
||||
subject_report=`printf "[Cron Report] $subject"`;
|
||||
host=$(/bin/hostname);
|
||||
headers=`printf "From: %s\r\nReply-To: %s\r\nContent-Type: text/html; charset=utf-8\r\n" "$from" "$to_report"`;
|
||||
|
||||
# Some default values
|
||||
|
@ -102,13 +101,13 @@ if [ $send == "yes" ]; then
|
|||
# es wird eine benachrichtigung versendet
|
||||
if [ $sendcc == "yes" ]; then
|
||||
# auch an den admin/report
|
||||
echo -e "${headers}\n\n${body}" | /usr/local/bin/mutt -H - -s "${subject}" -- "${to_notification}" "${to_report}"
|
||||
echo -e "${headers}\n\n${body}" | mutt -H - -s "${subject}" -- "${to_notification}" "${to_report}"
|
||||
else
|
||||
# nur an die notification mail adresse
|
||||
echo -e "${headers}\n\n${body}" | /usr/local/bin/mutt -H - -s "${subject}" -- "${to_notification}"
|
||||
echo -e "${headers}\n\n${body}" | mutt -H - -s "${subject}" -- "${to_notification}"
|
||||
fi
|
||||
fi
|
||||
|
||||
# a report is always sent
|
||||
echo -e "${headers}\n\n${bodymg}" | /usr/local/bin/mutt -H - -s "${subject_report}" -- "${to_report}"
|
||||
echo -e "${headers}\n\n${bodymg}" | mutt -H - -s "${subject_report}" -- "${to_report}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue