diff options
author | Nathan Phillip Brink <binki@gentoo.org> | 2011-07-22 03:22:12 +0000 |
---|---|---|
committer | Nathan Phillip Brink <binki@gentoo.org> | 2011-07-22 03:22:12 +0000 |
commit | 91288628b4d35a71affb9e77f8204692b178bbb3 (patch) | |
tree | 5368c150664f30521e2f4511fa04e006bf4cd333 /net-irc | |
parent | Remove irssi-svn from the list of live ebuilds since it's now called irssi-999. (diff) | |
download | gentoo-2-91288628b4d35a71affb9e77f8204692b178bbb3.tar.gz gentoo-2-91288628b4d35a71affb9e77f8204692b178bbb3.tar.bz2 gentoo-2-91288628b4d35a71affb9e77f8204692b178bbb3.zip |
Use --pidfile and --user in the initscript, recommended by the_mgt/ich.
(Portage version: 2.2.0_alpha41-r1/cvs/Linux x86_64)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/atheme-services/ChangeLog | 9 | ||||
-rw-r--r-- | net-irc/atheme-services/atheme-services-6.0.8-r2.ebuild (renamed from net-irc/atheme-services/atheme-services-6.0.8-r1.ebuild) | 2 | ||||
-rw-r--r-- | net-irc/atheme-services/files/atheme-services.initd | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/net-irc/atheme-services/ChangeLog b/net-irc/atheme-services/ChangeLog index 1f8e1af33fad..072b2df93bcb 100644 --- a/net-irc/atheme-services/ChangeLog +++ b/net-irc/atheme-services/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-irc/atheme-services # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/atheme-services/ChangeLog,v 1.8 2011/07/20 02:24:17 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/atheme-services/ChangeLog,v 1.9 2011/07/22 03:22:12 binki Exp $ + +*atheme-services-6.0.8-r2 (22 Jul 2011) + + 22 Jul 2011; Nathan Phillip Brink <binki@gentoo.org> + -atheme-services-6.0.8-r1.ebuild, +atheme-services-6.0.8-r2.ebuild, + files/atheme-services.initd: + Use --pidfile and --user in the initscript, recommended by the_mgt/ich. *atheme-services-6.0.8-r1 (20 Jul 2011) diff --git a/net-irc/atheme-services/atheme-services-6.0.8-r1.ebuild b/net-irc/atheme-services/atheme-services-6.0.8-r2.ebuild index b97a387a2738..7230d56f47bd 100644 --- a/net-irc/atheme-services/atheme-services-6.0.8-r1.ebuild +++ b/net-irc/atheme-services/atheme-services-6.0.8-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/atheme-services/atheme-services-6.0.8-r1.ebuild,v 1.1 2011/07/20 02:24:17 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/atheme-services/atheme-services-6.0.8-r2.ebuild,v 1.1 2011/07/22 03:22:12 binki Exp $ EAPI=4 diff --git a/net-irc/atheme-services/files/atheme-services.initd b/net-irc/atheme-services/files/atheme-services.initd index 7d643533ef1a..21e6b44cec6d 100644 --- a/net-irc/atheme-services/files/atheme-services.initd +++ b/net-irc/atheme-services/files/atheme-services.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/atheme-services/files/atheme-services.initd,v 1.1 2011/07/20 02:24:17 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/atheme-services/files/atheme-services.initd,v 1.2 2011/07/22 03:22:12 binki Exp $ opts="reload" @@ -20,7 +20,7 @@ start() { fi ebegin "Starting ${SVCNAME}" - start-stop-daemon --start --chuid atheme-services --exec /usr/bin/atheme-services + start-stop-daemon --start --pidfile=/var/run/atheme/atheme.pid --user atheme-services --exec /usr/bin/atheme-services eend $? } |