/[pkg-subversion]/trunk/debian/libapache2-svn.prerm
ViewVC logotype

Contents of /trunk/debian/libapache2-svn.prerm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 197 - (show annotations) (download)
Tue Aug 3 21:35:17 2004 UTC (8 years, 9 months ago) by dwhedon
File size: 213 byte(s)
* debian/libapache2-svn.postrm moved to debian/libapache2-svn.prerm.
  Only remove modules from apache's configuration when we are removing
  libapache2-svn, not on upgrades. (closes: #251245) Additionally, move
  the module config manipulation from the postrm to the prerm.  This way
  there is no time when apache is configured to load a module that is
  not present on the system.
1 #!/bin/sh -e
2
3 if [ "$1" = "remove" ] ; then
4 for file in dav_svn.conf dav_svn.load ; do
5 if [ -L /etc/apache2/mods-enabled/$file ] ; then
6 rm /etc/apache2/mods-enabled/$file
7 fi
8 done
9 fi
10
11 #DEBHELPER#

  ViewVC Help
Powered by ViewVC 1.1.5