5801d150c6
git-svn-id: svn://svn.openwrt.org/openwrt/packages@17256 3c298f89-4303-0410-b956-a3cf2f4a3e73
13 lines
222 B
Bash
Executable File
13 lines
222 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
# The init file runs the sadc command in order to write
|
|
# the "LINUX RESTART" mark to the daily data file
|
|
|
|
START=99
|
|
|
|
start() {
|
|
mkdir -p /var/log/sysstat
|
|
/usr/lib/sysstat/sadc -S DISK -F -L -
|
|
}
|
|
|