diff options
author | Marcin Kryczek <mkay@gentoo.org> | 2005-09-18 11:51:01 +0000 |
---|---|---|
committer | Marcin Kryczek <mkay@gentoo.org> | 2005-09-18 11:51:01 +0000 |
commit | 539f0816a030e13f57c6d0e5841637e71b005306 (patch) | |
tree | 66921840498e5056d2e286a4c47ee4aafbc4f2e0 /net-p2p | |
parent | stable amd64 (diff) | |
download | gentoo-2-539f0816a030e13f57c6d0e5841637e71b005306.tar.gz gentoo-2-539f0816a030e13f57c6d0e5841637e71b005306.tar.bz2 gentoo-2-539f0816a030e13f57c6d0e5841637e71b005306.zip |
Command-line parameters for amuleweb have changed. Fixing init.d script. This also close bug #105642
(Portage version: 1.589-cvs)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/amule/ChangeLog | 6 | ||||
-rw-r--r-- | net-p2p/amule/files/amuleweb.initd | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-p2p/amule/ChangeLog b/net-p2p/amule/ChangeLog index 2f46ce28aa5a..ebcf87c624f1 100644 --- a/net-p2p/amule/ChangeLog +++ b/net-p2p/amule/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-p2p/amule # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/ChangeLog,v 1.45 2005/09/18 11:46:17 mkay Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/ChangeLog,v 1.46 2005/09/18 11:51:01 mkay Exp $ + + 18 Sep 2005; <mkay@gentoo.org> files/amuleweb.initd: + Command-line parameters for amuleweb have changed. Fixing init.d script. + This also close bug #105642 18 Sep 2005; <mkay@gentoo.org> amule-2.0.1.ebuild: Older version has the same problem with symlinks outside sandbox. Fixed diff --git a/net-p2p/amule/files/amuleweb.initd b/net-p2p/amule/files/amuleweb.initd index 8734d3a323ff..2dd5113728ff 100644 --- a/net-p2p/amule/files/amuleweb.initd +++ b/net-p2p/amule/files/amuleweb.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/files/amuleweb.initd,v 1.2 2005/08/27 17:17:55 sekretarz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/files/amuleweb.initd,v 1.3 2005/09/18 11:51:01 mkay Exp $ depend() { need net @@ -21,9 +21,8 @@ start() { rm /var/run/amuleweb.pid - OPTIONS="-rh ${AMULEHOST} -p ${AMULEPORT} -pw ${AMULEPWD}" + OPTIONS="-h ${AMULEHOST} -p ${AMULEPORT} -P ${AMULEPWD}" - einfo $OPTIONS ebegin "Starting aMule WebServer" env HOME="${AMULEHOME}" start-stop-daemon --start \ --quiet -b \ |