You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/collectl/files/collectl.initd-2

16 lines
348 B

#!/sbin/openrc-run
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_started_commands="flush"
pidfile="/var/run/collectl.pid"
command="/usr/bin/collectl"
command_args="-D"
flush() {
einfo "Flushing collectl buffers"
start-stop-daemon --signal USR1 --pidfile ${pidfile}
eend $?
}