1#!/bin/sh /etc/rc.common
2
3# The init file runs the sadc command in order to write
4# the "LINUX RESTART" mark to the daily data file
5
6START=99
7
8start() {
9	mkdir -p /var/log/sysstat
10	/usr/lib/sysstat/sadc -S DISK -F -L -
11}
12
13