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

Pablo Fischer pabl0-guest@haydn.debian.org
Fri, 16 Apr 2004 22:25:17 -0600


Author: pabl0-guest
Date: 2004-04-16 22:25:14 -0600 (Fri, 16 Apr 2004)
New Revision: 596

Modified:
   xsp-snapshot/trunk/debian/official/changelog
   xsp-snapshot/trunk/debian/official/mono-server.init
   xsp-snapshot/trunk/debian/official/mono-xsp.init
Log:
Updated, I removed something stupid from the .init, it was really necesary
to do a -z $virtual_dirs, also, removing that line from the changelog


Modified: xsp-snapshot/trunk/debian/official/changelog
===================================================================
--- xsp-snapshot/trunk/debian/official/changelog	2004-04-17 04:01:45 UTC (rev 595)
+++ xsp-snapshot/trunk/debian/official/changelog	2004-04-17 04:25:14 UTC (rev 596)
@@ -1,3 +1,21 @@
+xsp (0.9-10) unstable; urgency=low
+
+  * The reader scripts were not printing (duh)
+	
+ -- Pablo Fischer <pablo@pablo.com.mx>  Fri, 16 Abr 2004 23:19:40 -0600
+	
+xsp (0.9-9) unstable; urgency=low
+
+  * Removed the old sh scripts, now we use the power of perl (I preffer it)
+  * Also edited the asp.net-examples.postinst, we should check if the update script exists
+  * Now, the reader and update script are just used by root (usr/sbin)	
+  * Removed the asp.net-examples.install, we install the host file with dh_installxsp 
+  * In the asp.net-examples.postinst and postrm scripts we check if the 'scripts' of xsp or 
+    mono-server are really installed	
+  * Removed the two ln -s (rules), we are replacing those lines with .links files
+	
+ -- Pablo Fischer <pablo@pablo.com.mx>  Fri, 16 Abr 2004 20:29:00 -0600
+	
 xsp (0.9-8) unstable; urgency=low
 
   * We implement dh_installxsp to install the host files

Modified: xsp-snapshot/trunk/debian/official/mono-server.init
===================================================================
--- xsp-snapshot/trunk/debian/official/mono-server.init	2004-04-17 04:01:45 UTC (rev 595)
+++ xsp-snapshot/trunk/debian/official/mono-server.init	2004-04-17 04:25:14 UTC (rev 596)
@@ -59,6 +59,11 @@
 	return 1
     fi
 
+    if [[ -z $virtual_dirs ]]; then
+        echo "Sorry, I found an empty /etc/mono-server/mono-server-hosts.conf"
+        return 1
+    fi
+    
     if [[ $virtual_dirs = *Sorry* ]]; then
         echo "Sorry, I found a missconfiguration in /etc/mono-server/mono-server-hosts.conf, fix it, or dpkg-reconfigure mono-server/virtua\lhosts packages"
         return 1

Modified: xsp-snapshot/trunk/debian/official/mono-xsp.init
===================================================================
--- xsp-snapshot/trunk/debian/official/mono-xsp.init	2004-04-17 04:01:45 UTC (rev 595)
+++ xsp-snapshot/trunk/debian/official/mono-xsp.init	2004-04-17 04:25:14 UTC (rev 596)
@@ -43,6 +43,11 @@
 	return 1
     fi
 	
+    if [[ -z $virtual_dirs ]]; then
+        echo "Sorry, I found an empty /etc/xsp/mono-xsp-hosts.conf"
+        return 1
+    fi
+
     if [ -f /var/run/$NAME ]; then
 	# Are we really running xsp?
 	xsp_pid=`cat /var/run/$NAME`