#! /bin/sh # vim:ft=sh:et ### BEGIN INIT INFO # Provides: sysstat # Required-Start: $remote_fs $local_fs $syslog # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: # Short-Description: Start/stop sysstat's sadc # Description: Sysstat contains system performance tools for Linux # The init file runs the sadc command in order to write # the "LINUX RESTART" mark to the daily data file ### END INIT INFO global PATH := '/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin' global DAEMON := '/usr/lib/sysstat/debian-sa1' global NAME := 'sadc' global DESC := '"the system activity data collector'" test -f $DAEMON || exit 0 umask 022 # our configuration file global DEFAULT := '/etc/default/sysstat' # default settings... global ENABLED := '"false'" global SA1_OPTIONS := ''"" # ...overriden in the configuration file test -r $DEFAULT && source "$DEFAULT" set -e global status := '0' source /lib/lsb/init-functions matchstr $1 { start|restart|reload|force-reload { if test $ENABLED = "true" { log_daemon_msg "Starting $DESC" $NAME start-stop-daemon --start --quiet --exec $DAEMON -- --boot || global status := $Status log_end_msg $status } } stop { } status { if test $ENABLED = "true" { log_success_msg "sadc cron jobs are enabled" exit 0 } else { log_failure_msg "sadc cron jobs are disabled" exit 3 } } * { log_failure_msg "Usage: $0 {start|stop|restart|reload|force-reload|status}" exit 1 } } exit $status