fix path to notify script (#675778)
This commit is contained in:
parent
ad22ce1357
commit
eaa1acf49f
10
smartdnotify
10
smartdnotify
@ -4,6 +4,12 @@
|
|||||||
echo "$SMARTD_MESSAGE" | mail -s "$SMARTD_FAILTYPE" "$SMARTD_ADDRESS"
|
echo "$SMARTD_MESSAGE" | mail -s "$SMARTD_FAILTYPE" "$SMARTD_ADDRESS"
|
||||||
|
|
||||||
# Notify desktop user
|
# Notify desktop user
|
||||||
/usr/bin/notify-send -t 0 "WARNING: Your hard drive is failing" "Description:
|
MESSAGE="WARNING: Your hard drive is failing"
|
||||||
$SMARTD_MESSAGE" >/dev/null 2>&1 ||:
|
|
||||||
|
# direct write to terminals, do not use 'wall', because we don't want its ugly header
|
||||||
|
for t in $(who | awk '{ print $2; }' | grep -e '^tty' -e '^pts/')
|
||||||
|
do
|
||||||
|
echo "$MESSAGE
|
||||||
|
$SMARTD_MESSAGE" >/dev/$t 2>/dev/null ||:
|
||||||
|
done
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ diff -up smartmontools-5.38/smartd.conf.defaultconf smartmontools-5.38/smartd.co
|
|||||||
# are found. Most users should comment out DEVICESCAN and explicitly
|
# are found. Most users should comment out DEVICESCAN and explicitly
|
||||||
# list the devices that they wish to monitor.
|
# list the devices that they wish to monitor.
|
||||||
-DEVICESCAN
|
-DEVICESCAN
|
||||||
+DEVICESCAN -H -m root -M exec /usr/lib/smartd_actions -n standby,10,q
|
+DEVICESCAN -H -m root -M exec /usr/libexec/smartmontools/smartdnotify -n standby,10,q
|
||||||
|
|
||||||
# Alternative setting to ignore temperature and power-on hours reports
|
# Alternative setting to ignore temperature and power-on hours reports
|
||||||
# in syslog.
|
# in syslog.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Summary: Tools for monitoring SMART capable hard disks
|
Summary: Tools for monitoring SMART capable hard disks
|
||||||
Name: smartmontools
|
Name: smartmontools
|
||||||
Version: 5.40
|
Version: 5.40
|
||||||
Release: 9%{?dist}
|
Release: 10%{?dist}
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
@ -117,6 +117,9 @@ fi
|
|||||||
%{_datadir}/%{name}
|
%{_datadir}/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon May 16 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-10
|
||||||
|
- fix path to notify script (#675778)
|
||||||
|
|
||||||
* Fri Mar 11 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-9
|
* Fri Mar 11 2011 Michal Hlavinka <mhlavink@redhat.com> - 1:5.40-9
|
||||||
- fix typos in man page
|
- fix typos in man page
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user