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-process/atop/files/netatop.rc

18 lines
330 B

#!/sbin/openrc-run
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
command="/usr/sbin/netatopd"
procname="netatopd"
depend() {
before atop atopacct
}
start_pre() {
modprobe netatop > /dev/null 2>&1
}
stop_post() {
rmmod netatop > /dev/null 2>&1
}