summaryrefslogtreecommitdiffstats
path: root/src/plugins/smart_event.conf
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/smart_event.conf')
-rw-r--r--src/plugins/smart_event.conf38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/plugins/smart_event.conf b/src/plugins/smart_event.conf
new file mode 100644
index 00000000..9c23862b
--- /dev/null
+++ b/src/plugins/smart_event.conf
@@ -0,0 +1,38 @@
+# Access to /dev/sda usually requires root.
+# skdump is usually in /usr/sbin.
+# Therefore we run it as post-create event, thus: under root.
+#
+# The code is identical for all three packages.
+#
+# To be moved to the packages, so that it is (de)installed
+# together with these packages.
+
+# FIXME: not working yet, because program selection code
+# looks at dump dir BEFORE running programs,
+# thus, component is not created yet
+# (it is created by 1st program in main .conf file)
+# when program selection code looks at this file.
+
+EVENT=post-create component=gnome-disk-utility
+ which skdump >/dev/null 2>&1 || exit 0
+ for f in /dev/[sh]d[a-z]; do
+ test -e "$f" || continue
+ skdump "$f"
+ echo
+ done >smart_data
+
+EVENT=post-create component=libatasmart
+ which skdump >/dev/null 2>&1 || exit 0
+ for f in /dev/[sh]d[a-z]; do
+ test -e "$f" || continue
+ skdump "$f"
+ echo
+ done >smart_data
+
+EVENT=post-create component=udisks
+ which skdump >/dev/null 2>&1 || exit 0
+ for f in /dev/[sh]d[a-z]; do
+ test -e "$f" || continue
+ skdump "$f"
+ echo
+ done >smart_data