diff options
author | Michael Tindal <urilith@gentoo.org> | 2005-06-16 08:50:49 +0000 |
---|---|---|
committer | Michael Tindal <urilith@gentoo.org> | 2005-06-16 08:50:49 +0000 |
commit | defce31f0cf69cff2a1f4a7ea2f66ea166a05234 (patch) | |
tree | 65f3c5756d344398e2095f9f6182546c838bb3e1 /dev-dotnet/xsp | |
parent | Added to ~ppc (diff) | |
download | gentoo-2-defce31f0cf69cff2a1f4a7ea2f66ea166a05234.tar.gz gentoo-2-defce31f0cf69cff2a1f4a7ea2f66ea166a05234.tar.bz2 gentoo-2-defce31f0cf69cff2a1f4a7ea2f66ea166a05234.zip |
Fix init.d script.
(Portage version: 1.589-cvs)
Diffstat (limited to 'dev-dotnet/xsp')
-rw-r--r-- | dev-dotnet/xsp/ChangeLog | 5 | ||||
-rw-r--r-- | dev-dotnet/xsp/files/xsp.initd | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-dotnet/xsp/ChangeLog b/dev-dotnet/xsp/ChangeLog index e9325ac512dc..f089c9b14bc4 100644 --- a/dev-dotnet/xsp/ChangeLog +++ b/dev-dotnet/xsp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-dotnet/xsp # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/ChangeLog,v 1.24 2005/05/22 11:07:15 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/ChangeLog,v 1.25 2005/06/16 08:50:49 urilith Exp $ + + 16 Jun 2005; Michael Tindal <urilith@gentoo.org> files/xsp.initd: + Fix init.d script. 22 May 2005; Simon Stelling <blubb@gentoo.org> xsp-1.0.9.ebuild: added ~amd64 keyword diff --git a/dev-dotnet/xsp/files/xsp.initd b/dev-dotnet/xsp/files/xsp.initd index 9cbe923f96e0..1aa58f570d8c 100644 --- a/dev-dotnet/xsp/files/xsp.initd +++ b/dev-dotnet/xsp/files/xsp.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/xsp.initd,v 1.2 2004/07/14 21:43:23 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/xsp.initd,v 1.3 2005/06/16 08:50:49 urilith Exp $ depend() { need net @@ -16,7 +16,7 @@ start() { --make-pidfile \ --pidfile /var/run/aspnet/xsp.pid \ --chuid aspnet \ - --exec /usr/bin/mono /usr/bin/xsp.exe -- --root ${MonoServerRoot} --port ${MonoServerPort} --nonstop + --exec /usr/bin/mono /usr/lib/mono/1.0/xsp.exe -- --root ${MonoServerRoot} --port ${MonoServerPort} --nonstop eend $? } |