#! /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 setglobal PATH = '/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin' setglobal DAEMON = '/usr/lib/sysstat/debian-sa1' setglobal NAME = 'sadc' setglobal DESC = '"the system activity data collector'" test -f $DAEMON || exit 0 umask 022 # our configuration file setglobal DEFAULT = '/etc/default/sysstat' # default settings... setglobal ENABLED = '"false'" setglobal SA1_OPTIONS = ''"" # ...overriden in the configuration file test -r $DEFAULT && source "$DEFAULT" set -e setglobal status = '0' source /lib/lsb/init-functions match $1 { with start|restart|reload|force-reload if test $ENABLED = "true" { log_daemon_msg "Starting $DESC" $NAME start-stop-daemon --start --quiet --exec $DAEMON -- --boot || setglobal status = $Status log_end_msg $status } with stop with 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 } with * log_failure_msg "Usage: $0 {start|stop|restart|reload|force-reload|status}" exit 1 } exit $status