mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-29 08:28:08 -07:00
Closes: https://bugs.gentoo.org/523462 Closes: https://bugs.gentoo.org/553252 Closes: https://bugs.gentoo.org/653580 Closes: https://bugs.gentoo.org/667800 Signed-off-by: Conrad Kostecki <conrad@kostecki.com> Package-Manager: Portage-2.3.51, Repoman-2.3.11 Closes: https://github.com/gentoo/gentoo/pull/10075 Signed-off-by: Michał Górny <mgorny@gentoo.org>
17 lines
325 B
Plaintext
17 lines
325 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2018 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
instance="${SVCNAME}"
|
|
name="LCDProc (${instance})"
|
|
pidfile="/run/${instance}.pid"
|
|
|
|
command="/usr/bin/lcdexec"
|
|
command_args="-c /etc/${instance}.conf"
|
|
|
|
depend() {
|
|
after ntp-client
|
|
use LCDd
|
|
use net
|
|
}
|