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-i18n/skkserv/files/skkserv.initd

20 lines
368 B

#!/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 ${?}
}