mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
16 lines
372 B
Plaintext
16 lines
372 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
description="Starts ${SVCNAME} service for OpenStack"
|
|
|
|
command=/usr/bin/${RC_SVCNAME}
|
|
command_user="${GLANCE_USER:-glance}"
|
|
command_background=yes
|
|
pidfile=/run/${RC_SVCNAME}.pid
|
|
required_files=/etc/glance/${RC_SVCNAME}.conf
|
|
|
|
depend() {
|
|
need net
|
|
}
|