#!/bin/sh
#
# chkconfig: 235 03 97
# description: sysstat utilities for \
#              system monitoring.
#
# Author: Klaus.Franken@fth2.siemens.de
# Die Okt 12 10:05:41 EDT 1999
#
# Modified by:
# 1999/11/07 - Sebastien Godard <sebastien.godard@wanadoo.fr>
#	Now use '-d' option when starting sar.
# 2000/01/22 - Sebastien Godard <sebastien.godard@wanadoo.fr>
#	Rewritten from scratch. Call sadc instead of sar.
# 2004/10/10 - Sebastien Godard (sysstat <at> wanadoo.fr)
#	Now returns real exit code.
# 2006/07/05 - Sebastien Godard (sysstat <at> wanadoo.fr)
#	Added support for chkconfig
#
# /etc/rc.d/init.d/sysstat
#

RETVAL=0
# Remove flag indicating that sadc was successfully launched
rm -f /var/run/sysstat.run

# See how we were called.
case "$1" in
  start)
        echo -n "Calling the system activity data collector (sadc): "
        /usr/lib/sa/sadc -F -L - && touch /var/run/sysstat.run

# Try to guess if sadc was successfully launched. The difficulty
# here is that the exit code is lost when the above command is
# run via "su foo -c ..."
	if [ ! -f /var/run/sysstat.run ]; then
		RETVAL=1
	else
		rm -f /var/run/sysstat.run
	fi
        echo
        ;;
  stop|status|restart|reload)
        ;;
  *)
        echo "Usage: sysstat {start|stop|status|restart|reload}"
        exit 1
esac
exit ${RETVAL}

