[arch-commits] Commit in smartmontools/trunk (smartd.conf smartd.rc)

Giovanni Scafora giovanni at archlinux.org
Tue Oct 27 21:51:07 UTC 2009


    Date: Tuesday, October 27, 2009 @ 17:51:07
  Author: giovanni
Revision: 56781

Added:
  smartmontools/trunk/smartd.conf
  smartmontools/trunk/smartd.rc

-------------+
 smartd.conf |    1 +
 smartd.rc   |   39 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

Added: smartd.conf
===================================================================
--- smartd.conf	                        (rev 0)
+++ smartd.conf	2009-10-27 21:51:07 UTC (rev 56781)
@@ -0,0 +1 @@
+SMARTD_ARGS=""

Added: smartd.rc
===================================================================
--- smartd.rc	                        (rev 0)
+++ smartd.rc	2009-10-27 21:51:07 UTC (rev 56781)
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+# source application-specific settings
+SMARTD_ARGS=
+[ -f /etc/conf.d/smartd ] && . /etc/conf.d/smartd
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+case "$1" in
+
+   start)
+     stat_busy "Starting smartd"
+     /usr/sbin/smartd ${SMARTD_ARGS} &>/dev/null
+     if [ $? -ne 0 ]; then
+       stat_fail
+     else
+       add_daemon smartd
+       stat_done
+     fi
+   ;;
+
+   stop)
+     stat_busy "Stopping smartd"
+     kill -9 `pidof /usr/sbin/smartd` &>/dev/null
+     rm_daemon smartd
+     stat_done
+   ;;
+
+   restart)
+     stat_busy "Restarting smartd ..."
+     $0 stop
+     $0 start
+     stat_done
+   ;;
+
+   *)
+     echo "usage: $0 {start|stop|restart}"
+esac


Property changes on: smartmontools/trunk/smartd.rc
___________________________________________________________________
Added: svn:executable
   + *




More information about the arch-commits mailing list