This repository has been archived on 2021-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
gentoo-overlay/app-admin/sysstat/files/sysstat.init.d

19 lines
378 B
D

#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
use hostname
}
start() {
ebegin "Writing a dummy startup record using sadc (see sadc(8))..."
/usr/lib/sa/sa1 --boot
eend $?
}
stop() {
ebegin "Cannot stop writing a dummy startup record (see sadc(8))..."
eend $?
}