view system/smartmontools/smartd @ 1028:e46348eb3fbd

vanilla: create a generic lint.sh script
author David Demelier <markand@malikania.fr>
date Fri, 30 Aug 2019 21:05:00 +0200
parents 3dfef64b81c1
children
line wrap: on
line source

#!/bin/sh
#
# /etc/rc.d/smartd -- run control script for smartd
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

if [ -f /etc/rc.conf ]; then
	. /etc/rc.conf
fi

: ${SMARTD_CMD:=/usr/sbin/smartd}
: ${SMARTD_ARGS:=}
: ${SMARTD_PID:=/var/run/smartd.pid}

smartd_start()
{
	if [ -s $SMARTD_PID ]; then
		echo "smartd is already running with pid: $(cat $SMARTD_PID)"
	else
		echo "Starting smartd: $SMARTD_CMD $SMARTD_ARGS"
		$SMARTD_CMD $SMARTD_ARGS -p $SMARTD_PID
	fi
}

smartd_status()
{
	if [ -s $SMARTD_PID ]; then
		echo "smartd is running with pid: $(cat $SMARTD_PID)"
	else
		echo "smartd is not running"
	fi
}

smartd_stop()
{
	if [ -s $SMARTD_PID ]; then
		echo "Stopping smartd."
		kill -QUIT $(cat $SMARTD_PID)
		rm -f $SMARTD_PID
	fi
}

smartd_restart()
{
	smartd_stop
	sleep 3
	smartd_start
}

case $1 in
start)
	smartd_start
	;;
status)
	smartd_status
	;;
stop)
	smartd_stop
	;;
restart)
	smartd_restart
	;;
*)
	echo "usage: $(basename $0) restart|start|status|stop"
	;;
esac