New script 94-update-smart-drivedb to update smartmontools' drive database
authorMichael Prokop <mika@grml.org>
Thu, 23 Apr 2015 16:12:28 +0000 (18:12 +0200)
committerMichael Prokop <mika@grml.org>
Thu, 23 Apr 2015 16:13:27 +0000 (18:13 +0200)
etc/grml/fai/config/scripts/GRMLBASE/94-update-smart-drivedb [new file with mode: 0755]

diff --git a/etc/grml/fai/config/scripts/GRMLBASE/94-update-smart-drivedb b/etc/grml/fai/config/scripts/GRMLBASE/94-update-smart-drivedb
new file mode 100755 (executable)
index 0000000..3baa757
--- /dev/null
@@ -0,0 +1,32 @@
+#!/bin/bash
+# Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/94-update-smart-drivedb
+# Purpose:       update pciids
+# Authors:       (c) Michael Prokop <mika@grml.org>
+# Bug-Reports:   see http://grml.org/bugs/
+# License:       This file is licensed under the GPL v2.
+################################################################################
+
+if ifclass NO_ONLINE ; then
+  echo "Ignoring script 94-update-smart-drivedb as NO_ONLINE is set."
+  exit 0
+fi
+
+set -u
+set -e
+
+[ -x $target/usr/bin/timeout ] && TIMEOUT="10" || TIMEOUT=""
+
+if ! [ -x ${target}/usr/sbin/update-smart-drivedb ] ; then
+  echo "Warning: smartmontools not installed"
+  exit 0
+fi
+
+echo "Updating smartmontool drivedb"
+if [ -n "$TIMEOUT" ] ; then
+   $ROOTCMD timeout $TIMEOUT update-smart-drivedb
+else
+   $ROOTCMD update-smart-drivedb
+fi
+
+## END OF FILE #################################################################
+# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2