PKGBUILDs/community/sysstat/sysstat

22 lines
298 B
Text
Raw Normal View History

2009-10-10 02:15:33 +00:00
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
start)
stat_busy "Writing SysStat restart record"
/usr/lib/sa/sadc -L -F -
if [ $? -gt 0 ]; then
stat_fail
else
stat_done
fi
;;
stop)
;;
*)
echo "usage: $0 {start|stop}"
esac
exit 0