[Pkg-mono-svn-commits] rev 287 - xsp-snapshot/trunk/debian/official

Pablo Fischer pabl0-guest@quantz.debian.org
Wed, 18 Feb 2004 04:52:06 +0100


Author: pabl0-guest
Date: 2004-02-18 04:52:05 +0100 (Wed, 18 Feb 2004)
New Revision: 287

Modified:
   xsp-snapshot/trunk/debian/official/asp.net-examples.postinst
   xsp-snapshot/trunk/debian/official/asp.net-examples.prerm
Log:
Removed the -snapshot suffix 


Modified: xsp-snapshot/trunk/debian/official/asp.net-examples.postinst
===================================================================
--- xsp-snapshot/trunk/debian/official/asp.net-examples.postinst	2004-02-18 03:49:59 UTC (rev 286)
+++ xsp-snapshot/trunk/debian/official/asp.net-examples.postinst	2004-02-18 03:52:05 UTC (rev 287)
@@ -1,11 +1,11 @@
 #!/bin/sh -e
 
-if [ -x /usr/bin/xsp.exe -a -d /etc/xsp-snapshot ]; then
+if [ -x /usr/bin/xsp.exe -a -d /etc/xsp ]; then
     echo "Updating Root Servers..."
-    echo "/samples:/usr/share/asp.net-demos/asp" >> /etc/xsp-snapshot/virtual.conf
+    echo "/samples:/usr/share/asp.net-demos/asp" >> /etc/xsp/virtual.conf
 fi
 
-if [ -x /usr/bin/mod-mono-server.exe -a -d /etc/mono-server-snapshot ]; then
+if [ -x /usr/bin/mod-mono-server.exe -a -d /etc/mono-server ]; then
     echo "Updating Root Servers..."
-    echo "/samples:/usr/share/asp.net-demos/asp" >> /etc/mono-server-snapshot/virtual.conf
+    echo "/samples:/usr/share/asp.net-demos/asp" >> /etc/mono-server/virtual.conf
 fi

Modified: xsp-snapshot/trunk/debian/official/asp.net-examples.prerm
===================================================================
--- xsp-snapshot/trunk/debian/official/asp.net-examples.prerm	2004-02-18 03:49:59 UTC (rev 286)
+++ xsp-snapshot/trunk/debian/official/asp.net-examples.prerm	2004-02-18 03:52:05 UTC (rev 287)
@@ -1,15 +1,15 @@
 #!/bin/sh -e
 
-if [ -f /etc/xsp-snapshot/virtual.conf ]; then
+if [ -f /etc/xsp/virtual.conf ]; then
     tempfile=`/bin/tempfile`
-    sed s/\\/samples:\\/usr\\/share\\/asp.net-demos\\/asp\// /etc/xsp-snapshot/virtual.conf > $tempfile
-    cp $tempfile /etc/xsp-snapshot/virtual.conf
-    rm -f /etc/xsp-snapshot/virtual.conf
+    sed s/\\/samples:\\/usr\\/share\\/asp.net-demos\\/asp\// /etc/mono-server/virtual.conf > $tempfile
+    cp $tempfile /etc/xsp/virtual.conf
+    rm -f /etc/xsp/virtual.conf
 fi
 
-if [ -f /etc/mono-server-snapshot/virtual.conf ]; then
+if [ -f /etc/mono-server/virtual.conf ]; then
     tempfile=`/bin/tempfile`
-    sed s/\\/samples:\\/usr\\/share\\/asp.net-demos\\/asp\// /etc/xsp-snapshot/virtual.conf > $tempfile
-    cp $tempfile /etc/mono-server-snapshot/virtual.conf
-    rm -f /etc/mono-server-snapshot/virtual.conf
+    sed s/\\/samples:\\/usr\\/share\\/asp.net-demos\\/asp\// /etc/mono-server/virtual.conf > $tempfile
+    cp $tempfile /etc/mono-server/virtual.conf
+    rm -f /etc/mono-server/virtual.conf
 fi