diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2012-11-17 23:26:40 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2012-11-17 23:26:40 +0000 |
commit | 5445ad09fae355f861ec9670353c29914fb2e3b8 (patch) | |
tree | 016d583d624d718697680ecbd71ca668d5eeff84 /games-fps | |
parent | version bump, update live ebuild (diff) | |
download | gentoo-2-5445ad09fae355f861ec9670353c29914fb2e3b8.tar.gz gentoo-2-5445ad09fae355f861ec9670353c29914fb2e3b8.tar.bz2 gentoo-2-5445ad09fae355f861ec9670353c29914fb2e3b8.zip |
fix init script (bug #443646)
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/sauerbraten/ChangeLog | 5 | ||||
-rw-r--r-- | games-fps/sauerbraten/files/sauerbraten.init | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/games-fps/sauerbraten/ChangeLog b/games-fps/sauerbraten/ChangeLog index e8456dd7aadf..521f15ba2a03 100644 --- a/games-fps/sauerbraten/ChangeLog +++ b/games-fps/sauerbraten/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-fps/sauerbraten # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/sauerbraten/ChangeLog,v 1.14 2012/11/16 21:04:44 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/sauerbraten/ChangeLog,v 1.15 2012/11/17 23:26:40 mr_bones_ Exp $ + + 17 Nov 2012; Michael Sterrett <mr_bones_@gentoo.org> files/sauerbraten.init: + fix init script (bug #443646) 16 Nov 2012; Michael Sterrett <mr_bones_@gentoo.org> -sauerbraten-2008.06.17.ebuild: diff --git a/games-fps/sauerbraten/files/sauerbraten.init b/games-fps/sauerbraten/files/sauerbraten.init index 5aa2356cbeaf..95ca105d0d09 100644 --- a/games-fps/sauerbraten/files/sauerbraten.init +++ b/games-fps/sauerbraten/files/sauerbraten.init @@ -23,7 +23,7 @@ start_server() { fi start-stop-daemon \ - --quiet --start --chuid ${USER}:${GROUP} --chdir ${SERVERCONFIG} \ + --quiet --start --user ${USER}:${GROUP} --chdir ${SERVERCONFIG} \ --make-pidfile --pidfile %GAMES_STATEDIR%/run/sauerbraten/server.pid \ --background --exec %LIBEXECDIR%/sauer_server -- ${SERVERARGS} eend $? @@ -44,7 +44,7 @@ start_master() { fi start-stop-daemon \ - --quiet --start --chuid ${USER}:${GROUP} \ + --quiet --start --user ${USER}:${GROUP} \ --make-pidfile --pidfile %GAMES_STATEDIR%/run/sauerbraten/master.pid \ --background --exec %LIBEXECDIR%/sauer_master -- ${MASTERARGS} eend $? |