saving uncommitted changes in /etc prior to emerge run
This commit is contained in:
parent
61ad174783
commit
6d8df58d32
36
init.d/._cfg0000_minetest-server
Executable file
36
init.d/._cfg0000_minetest-server
Executable file
@ -0,0 +1,36 @@
|
|||||||
|
#!/sbin/runscript
|
||||||
|
# Copyright 1999-2012 Gentoo Foundation
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
# $Header: $
|
||||||
|
|
||||||
|
description="Minetest dedicated server"
|
||||||
|
|
||||||
|
depend() {
|
||||||
|
need net
|
||||||
|
}
|
||||||
|
|
||||||
|
start() {
|
||||||
|
ebegin "starting server"
|
||||||
|
start-stop-daemon \
|
||||||
|
--start \
|
||||||
|
--quiet \
|
||||||
|
--make-pidfile \
|
||||||
|
--pidfile "${PIDFILE}" \
|
||||||
|
--background \
|
||||||
|
--user ${USER} \
|
||||||
|
--group ${GROUP} \
|
||||||
|
--exec "${MINETESTBIN}" -- ${ARGS}
|
||||||
|
|
||||||
|
eend $?
|
||||||
|
}
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
ebegin "stopping server"
|
||||||
|
start-stop-daemon \
|
||||||
|
--stop \
|
||||||
|
--signal 15 \
|
||||||
|
--quiet \
|
||||||
|
--pidfile "${PIDFILE}"
|
||||||
|
|
||||||
|
eend $?
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user