mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
Closes: https://bugs.gentoo.org/694430 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
18 lines
525 B
Plaintext
18 lines
525 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
SCCACHE_SCHEDULER_CONF="${SCCACHE_SCHEDULER_CONF:-/etc/sccache/scheduler.conf}"
|
|
|
|
depend() {
|
|
need localmount
|
|
use net
|
|
}
|
|
|
|
description="Starts sccache build scheduler server"
|
|
|
|
command="/usr/bin/sccache-dist"
|
|
command_args="--config ${SCCACHE_SCHEDULER_CONF} ${SCCACHE_SCHEDULER_LOGLEVEL:+--syslog ${SCCACHE_SCHEDULER_LOGLEVEL}}"
|
|
procname="${command} scheduler"
|
|
required_files="${SCCACHE_SCHEDULER_CONF}"
|