mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Change start-stop-daemon argument away from a deprecated one, that commit gets rid of a warning when starting. Signed-off-by: Henning Schild <henning@hennsch.de>
24 lines
505 B
Plaintext
24 lines
505 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
PID=/var/run/gem_server.pid
|
|
|
|
depend() {
|
|
need localmount net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting gem_server"
|
|
start-stop-daemon --start --user nobody --quiet --background \
|
|
--make-pidfile --pidfile ${PID} --exec /usr/bin/ruby -- \
|
|
/usr/bin/gem server ${GEM_SERVER_OPTS}
|
|
eend ${?}
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping gem_server"
|
|
start-stop-daemon --stop --pidfile ${PID}
|
|
eend ${?}
|
|
}
|