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/app-metrics/fusioninventory-agent/files/fusioninventory-agent.initd

22 lines
531 B

#!/sbin/openrc-run
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
pidfile=${RC_PREFIX%/}/run/${SVCNAME}.pid
name="fusioninventory-agent daemon"
description="FusionInventroy agent"
command=/usr/bin/fusioninventory-agent
command_args="--daemon --pidfile ${pidfile} ${FUSIONINVENTORY_OPTIONS}"
extra_started_commands="reload"
depend() {
need net
}
reload() {
ebegin "Reloading ${SVCNAME}"
start-stop-daemon --signal HUP --pidfile "${pidfile}"
eend $?
}