saving uncommitted changes in /etc prior to emerge run

This commit is contained in:
2015-02-27 01:58:55 +01:00
committed by root
commit b3cea8d893
2385 changed files with 507432 additions and 0 deletions

29
init.d/wesnothd Executable file
View File

@@ -0,0 +1,29 @@
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/files/wesnothd.rc,v 1.1 2005/10/20 20:16:27 mr_bones_ Exp $
depend() {
use net
}
start() {
[ -d /run/wesnothd ] || {
mkdir /run/wesnothd
chown wesnoth:wesnoth /run/wesnothd
}
ebegin "Starting wesnothd"
start-stop-daemon --start --quiet -b -m \
--pidfile /run/wesnothd/wesnothd.pid \
-c wesnoth:wesnoth \
--exec /usr/bin/wesnothd
eend $?
}
stop() {
ebegin "Stopping wesnothd"
start-stop-daemon --stop --quiet --pidfile /run/wesnothd/wesnothd.pid
eend $?
}