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

extra_started_commands="reload"

description_reload="Reload the SKK-JISYO.L"

command="/usr/sbin/${SVCNAME}"

depend() {
	need net
}

reload() {
	ebegin "Reloading ${SVCNAME}"
	start-stop-daemon --signal INT --name "${command}"
	eend ${?}
}