summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJurek Bartuszek <jurek@gentoo.org>2006-10-27 13:40:45 +0000
committerJurek Bartuszek <jurek@gentoo.org>2006-10-27 13:40:45 +0000
commit33cd9efacaa2f5c8bac9ab6eebcf7875d3d226e1 (patch)
tree8063bf6d2b13bdc39de0eb986226d1d836ffc9fb /dev-dotnet/xsp/files
parent - Added patch against xsp-1.1.10 that fixes a possible path disclosure (diff)
downloadgentoo-2-33cd9efacaa2f5c8bac9ab6eebcf7875d3d226e1.tar.gz
gentoo-2-33cd9efacaa2f5c8bac9ab6eebcf7875d3d226e1.tar.bz2
gentoo-2-33cd9efacaa2f5c8bac9ab6eebcf7875d3d226e1.zip
- Added patch against xsp-1.1.10 that fixes a possible path disclosure
security issue (bug #135002). - Added new xsp versions 1.1.13.7 and 1.1.18 - Added possibility to host ASP.NET 2.0 applications - Fixed bugs #146763, #122683, #147393, #135002 - Addressed bugs #77169, #91791, #132854 (Portage version: 2.1.1) (Unsigned Manifest commit)
Diffstat (limited to 'dev-dotnet/xsp/files')
-rw-r--r--dev-dotnet/xsp/files/digest-xsp-1.1.10-r13
-rw-r--r--dev-dotnet/xsp/files/mod-mono-server.confd30
-rw-r--r--dev-dotnet/xsp/files/mod-mono-server.initd70
-rw-r--r--dev-dotnet/xsp/files/xsp.confd11
-rw-r--r--dev-dotnet/xsp/files/xsp.initd29
5 files changed, 0 insertions, 143 deletions
diff --git a/dev-dotnet/xsp/files/digest-xsp-1.1.10-r1 b/dev-dotnet/xsp/files/digest-xsp-1.1.10-r1
deleted file mode 100644
index e73af25e21a4..000000000000
--- a/dev-dotnet/xsp/files/digest-xsp-1.1.10-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 8b5347c60951810c4fb6a96ff64c231e xsp-1.1.10.tar.gz 226627
-RMD160 69bef85fa8e050e01aaf002b9f0be33afa6bb128 xsp-1.1.10.tar.gz 226627
-SHA256 a4c9f1f533c1aff754ceb23de032a8f74af2d27b86db384f42129920e850192c xsp-1.1.10.tar.gz 226627
diff --git a/dev-dotnet/xsp/files/mod-mono-server.confd b/dev-dotnet/xsp/files/mod-mono-server.confd
deleted file mode 100644
index 975884001f83..000000000000
--- a/dev-dotnet/xsp/files/mod-mono-server.confd
+++ /dev/null
@@ -1,30 +0,0 @@
-# Config file for /etc/init.d/mod-mono-server
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/mod-mono-server.confd,v 1.2 2006/10/23 23:03:15 jurek Exp $
-
-# Configuration directives for mod-mono-server.exe. For more information on
-# these variables, see the man page for xsp(1).
-
-# This is the document root; trailing slash is not necessary
-#MonoServerRootDir="/usr/lib/xsp/test"
-
-# Directory to search for files with an `.webapp' extension.
-#MonoApplicationsConfigDir="/usr/lib/xsp/test"
-
-# Comma separated list of directories (in the form virtual:real) for all
-# applications managed by the server. For example:
-# /app1:/var/www/localhost/htdocs/app1,/app2:/var/www/localhost/htdocs/app2
-MonoApplications="/mono:/usr/lib/xsp/test"
-
-# The communication channel used between mod-mono-server and mod_mono.
-# unix - A unix socket
-# tcp - A TCP connection
-MonoServerChannel="unix"
-
-# When the comm. channel is "unix", the local filename used by the socket.
-UnixSocketFileName="/tmp/mod_mono_server"
-
-# When the comm. channel is "tcp", IP address for the server to listen on.
-#MonoServerAddress=127.0.0.1
-
-# When the comm. channel is "tcp", port for the server to listen on.
-#MonoServerPort=8080
diff --git a/dev-dotnet/xsp/files/mod-mono-server.initd b/dev-dotnet/xsp/files/mod-mono-server.initd
deleted file mode 100644
index 5d2dd7fcfa90..000000000000
--- a/dev-dotnet/xsp/files/mod-mono-server.initd
+++ /dev/null
@@ -1,70 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/mod-mono-server.initd,v 1.3 2006/10/23 23:03:15 jurek Exp $
-
-depend() {
- use net
- after dotnet
-}
-
-start() {
- [ -z "$MonoServerRootDir" ] && \
- MonoServerRootDir="/usr/lib/xsp/test"
- [ -z "$MonoApplications" ] && \
- MonoApplications="/mono:/usr/lib/xsp/test,/:."
- [ -z "$UnixSocketFileName" ] && \
- UnixSocketFileName="/tmp/mod_mono_server"
- [ -z "$MonoServerAddress" ] && \
- MonoServerAddress=127.0.0.1
- [ -z "$MonoServerPort" ] && \
- MonoServerPort=8080
-
- MONO_SERVER_OPTS="--root ${MonoServerRootDir} \
---applications ${MonoApplications} --nonstop"
-
- [ -n "$MonoApplicationsConfigDir" ] && \
- MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \
---appconfigdir ${MonoApplicationsConfigDir}"
-
- case "$MonoServerChannel" in
- "tcp" )
- MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \
---address ${MonoServerAddress} --port ${MonoServerPort}"
- ;;
-
- "unix" )
- [ -f "$UnixSocketFileName" ] && rm -f $UnixSocketFileName
- MONO_SERVER_OPTS="${MONO_SERVER_OPTS} \
---filename ${UnixSocketFileName}"
- ;;
-
- * )
- eerror "Please set a valid value for MonoServerChannel"
- return 1
- ;;
- esac
-
- export MONO_SHARED_DIR=/tmp
-
- ebegin "Starting mod-mono-server"
-
- start-stop-daemon --quiet --start \
- --background \
- --make-pidfile \
- --pidfile /var/run/aspnet/mod-mono-server.pid \
- --chuid apache \
- --exec /usr/bin/mod-mono-server \
- -- $MONO_SERVER_OPTS
-
- eend $?
-}
-
-stop() {
- ebegin "Stopping mod-mono-server"
-
- start-stop-daemon -o --quiet --stop \
- --pidfile /var/run/aspnet/mod-mono-server.pid
-
- eend $?
-}
diff --git a/dev-dotnet/xsp/files/xsp.confd b/dev-dotnet/xsp/files/xsp.confd
deleted file mode 100644
index ee323d222682..000000000000
--- a/dev-dotnet/xsp/files/xsp.confd
+++ /dev/null
@@ -1,11 +0,0 @@
-# Config file for /etc/init.d/xsp
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/xsp/files/xsp.confd,v 1.3 2006/10/23 23:03:15 jurek Exp $
-
-# This is the document root; trailing slash is not necessary
-MonoServerRoot=/usr/lib/xsp/test
-
-# Port for the server to run on
-MonoServerPort=8000
-
-
-
diff --git a/dev-dotnet/xsp/files/xsp.initd b/dev-dotnet/xsp/files/xsp.initd
deleted file mode 100644
index 2bbf88035159..000000000000
--- a/dev-dotnet/xsp/files/xsp.initd
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/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.4 2006/10/23 23:03:15 jurek Exp $
-
-depend() {
- need net
- after dotnet
-}
-
-start() {
- ebegin "Starting xsp"
-
- start-stop-daemon --quiet --start \
- --background \
- --make-pidfile \
- --pidfile /var/run/aspnet/xsp.pid \
- --chuid aspnet \
- --exec /usr/bin/mono /usr/lib/xsp/1.0/xsp.exe -- --root ${MonoServerRoot} --port ${MonoServerPort} --nonstop
- eend $?
-}
-
-stop() {
- ebegin "Stopping xsp"
- start-stop-daemon -o --quiet --stop \
- --pidfile /var/run/aspnet/xsp.pid
- eend $?
-}
-