[Pkg-mono-svn-commits] rev 382 - xsp-snapshot/trunk/debian/official
Pablo Fischer
pabl0-guest@quantz.debian.org
Sun, 29 Feb 2004 09:27:03 +0100
Author: pabl0-guest
Date: 2004-02-29 09:27:03 +0100 (Sun, 29 Feb 2004)
New Revision: 382
Added:
xsp-snapshot/trunk/debian/official/mono-server.prerm
xsp-snapshot/trunk/debian/official/mono-xsp.prerm
Log:
* NEW:: mono-server.prerm and mono-xsp.prerm
+ These files just checks that if virtual.conf exists,
we should remove it, we don't like stupid files.
Why should be remove it?, Remember that this file is generated
with the pretty mono-vhostmanager app :)
Added: xsp-snapshot/trunk/debian/official/mono-server.prerm
===================================================================
--- xsp-snapshot/trunk/debian/official/mono-server.prerm 2004-02-29 08:25:19 UTC (rev 381)
+++ xsp-snapshot/trunk/debian/official/mono-server.prerm 2004-02-29 08:27:03 UTC (rev 382)
@@ -0,0 +1,14 @@
+#!/bin/sh -e
+
+case "$1" in
+ remove)
+ # We really need the virtual.conf?
+ if [ -f /etc/mono-server/virtual.conf ]; then
+ rm -Rf /etc/mono-server/virtual.conf
+ fi
+ ;;
+ *)
+ ;;
+ esac
+exit 0
+
Property changes on: xsp-snapshot/trunk/debian/official/mono-server.prerm
___________________________________________________________________
Name: svn:executable
+ *
Added: xsp-snapshot/trunk/debian/official/mono-xsp.prerm
===================================================================
--- xsp-snapshot/trunk/debian/official/mono-xsp.prerm 2004-02-29 08:25:19 UTC (rev 381)
+++ xsp-snapshot/trunk/debian/official/mono-xsp.prerm 2004-02-29 08:27:03 UTC (rev 382)
@@ -0,0 +1,13 @@
+#!/bin/sh -e
+
+case "$1" in
+ remove)
+ # We really need the virtual.conf?
+ if [ -f /etc/xsp/virtual.conf ]; then
+ rm -Rf /etc/xsp/virtual.conf
+ fi
+ ;;
+ *)
+ ;;
+ esac
+exit 0
Property changes on: xsp-snapshot/trunk/debian/official/mono-xsp.prerm
___________________________________________________________________
Name: svn:executable
+ *