summaryrefslogtreecommitdiff
blob: 0721205b355a4d0415056322fd6bdb17583614ef (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/${RC_SVCNAME}"

depend() {
	need net
}

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