#!/sbin/openrc-run # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 description="Glances web server" pidfile="/run/glancesweb.pid" logfile="/var/log/glancesweb.log" depend() { need net } start() { . /opt/glances/bin/activate /opt/glances/bin/glances -w > ${logfile} 2> ${logfile}& echo $! > ${pidfile} }