diff options
author | Eugeni Dodonov <eugeni@mandriva.org> | 2009-03-24 13:34:07 +0000 |
---|---|---|
committer | Eugeni Dodonov <eugeni@mandriva.org> | 2009-03-24 13:34:07 +0000 |
commit | 8feea829a7d522228e2d5c5ebc3e42bb750d5c1d (patch) | |
tree | ac01c25339e7ade1e40ad2bc4ed70b0b4e69ed2f /cron-sh | |
parent | a8bfe3ecabf9bde20ecc446370e745e14effb3ef (diff) | |
download | msec-8feea829a7d522228e2d5c5ebc3e42bb750d5c1d.tar msec-8feea829a7d522228e2d5c5ebc3e42bb750d5c1d.tar.gz msec-8feea829a7d522228e2d5c5ebc3e42bb750d5c1d.tar.bz2 msec-8feea829a7d522228e2d5c5ebc3e42bb750d5c1d.tar.xz msec-8feea829a7d522228e2d5c5ebc3e42bb750d5c1d.zip |
Sending correct notify messages.
Diffstat (limited to 'cron-sh')
-rwxr-xr-x | cron-sh/diff_check.sh | 5 | ||||
-rwxr-xr-x | cron-sh/security.sh | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/cron-sh/diff_check.sh b/cron-sh/diff_check.sh index 772edb3..5f020cc 100755 --- a/cron-sh/diff_check.sh +++ b/cron-sh/diff_check.sh @@ -209,11 +209,12 @@ if [[ -s ${TMP} ]]; then echo -e "\n\n*** Diff Check, ${date} ***\n" >> ${SECURITY_LOG} cat ${TMP} >> ${SECURITY_LOG} - Notifylog "MSEC has performed Diff Check on ${hostname} on ${date}\nChanges in system security were detected and are available in ${SECURITY_LOG}." + Notifylog "MSEC has performed Diff Check on ${hostname} on ${date}. Changes in system security were detected and are available in ${SECURITY_LOG}." +else + Notifylog "MSEC has performed Diff Check on ${hostname} on ${date}. No changes were detected in system security." fi Maillog "[msec] *** Diff Check on ${hostname}, ${date} ***" "${TMP}" -Notifylog "MSEC has performed Diff Check on ${hostname} on ${date}\nNo changes were detected in system security." if [[ -f ${TMP} ]]; then rm -f ${TMP} diff --git a/cron-sh/security.sh b/cron-sh/security.sh index 19f6d8e..7b26119 100755 --- a/cron-sh/security.sh +++ b/cron-sh/security.sh @@ -243,8 +243,8 @@ EOF Notifylog() { if [ ${NOTIFY_WARN} == yes ]; then message=${1} - DBUS_SEND=`which DBUS_SEND 2>/dev/null` - if [ -x "$DBUS_SEND" -a -s ${message} ]; then + DBUS_SEND=`which dbus-send 2>/dev/null` + if [ -x "$DBUS_SEND" ]; then $DBUS_SEND --system --type=signal /com/mandriva/user com.mandriva.user.security_notification string:"$message" fi fi |