summaryrefslogtreecommitdiff
blob: 21b9bd14b0d5a14e05cc1b619c894233f6a47549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

name="Supermicro Thin-Agent Service"
pidfile="/run/${RC_SVCNAME}.pid"

command="/usr/bin/IPMITAS"
command_args="-agent start-service"
command_args_stop="-agent stop-service"
start_stop_daemon_args="--env LC_ALL=C"

stop() {
	ebegin "Stopping ${name}"
	${command} ${command_args_stop}
	eend $?
}