diff options
author | Hanno Böck <hanno@gentoo.org> | 2011-08-21 17:41:16 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2011-08-21 17:41:16 +0000 |
commit | 99160a0f7ed2a0c8b44b6349d28160da1da3c34b (patch) | |
tree | cff4b9b481b944cf4d8da71b3f13cd2daace62fb /net-im | |
parent | Bump to EAPI=4 to avoid adding lots of dies (diff) | |
download | gentoo-2-99160a0f7ed2a0c8b44b6349d28160da1da3c34b.tar.gz gentoo-2-99160a0f7ed2a0c8b44b6349d28160da1da3c34b.tar.bz2 gentoo-2-99160a0f7ed2a0c8b44b6349d28160da1da3c34b.zip |
pyicq-t: Fix openrc / baselayout 2 warnings in init-script
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/pyicq-t/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/pyicq-t/files/pyicq-t-0.8-initd | 6 |
2 files changed, 9 insertions, 5 deletions
diff --git a/net-im/pyicq-t/ChangeLog b/net-im/pyicq-t/ChangeLog index 88c1f0679256..f8e76dd96ca6 100644 --- a/net-im/pyicq-t/ChangeLog +++ b/net-im/pyicq-t/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-im/pyicq-t -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/pyicq-t/ChangeLog,v 1.20 2010/07/02 00:09:27 hanno Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/pyicq-t/ChangeLog,v 1.21 2011/08/21 17:41:16 hanno Exp $ + + 21 Aug 2011; Hanno Boeck <hanno@gentoo.org> files/pyicq-t-0.8-initd: + Avoid warnings with baselayout 2 / openrc / start-stop-daemon, --chuid is + deprecated. 02 Jul 2010; Hanno Boeck <hanno@gentoo.org> pyicq-t-0.8.1.5.ebuild, +files/pyicq-t-0.8.1.5-python26-warnings.diff: diff --git a/net-im/pyicq-t/files/pyicq-t-0.8-initd b/net-im/pyicq-t/files/pyicq-t-0.8-initd index 48234f758ea7..782b410232a8 100644 --- a/net-im/pyicq-t/files/pyicq-t-0.8-initd +++ b/net-im/pyicq-t/files/pyicq-t-0.8-initd @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/pyicq-t/files/pyicq-t-0.8-initd,v 1.2 2007/06/04 20:50:16 griffon26 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/pyicq-t/files/pyicq-t-0.8-initd,v 1.3 2011/08/21 17:41:16 hanno Exp $ depend() { need net @@ -10,7 +10,7 @@ depend() { start() { ebegin "Starting ICQ Jabber Transport" - start-stop-daemon --start --pidfile /var/run/jabber/pyicq-t.pid --chuid jabber:jabber \ + start-stop-daemon --start --pidfile /var/run/jabber/pyicq-t.pid -u jabber -g jabber \ --exec /usr/bin/python INSPATH/pyicq-t.py -- \ -b -c /etc/jabber/pyicq-t.xml -l /var/log/jabber/pyicq-t.log eend $? |