Sophie

Sophie

distrib > Mandriva > 9.0 > x86_64 > media > main > by-pkgid > 27880bccda9a51f907585be9f4f8449f > scriptlet

mod_dav-1.0.3-10.1mdk.x86_64.rpm

PREIN

/bin/sh
/usr/share/rpm-helper/add-user mod_dav $1 apache /var/www /bin/sh

POSTIN

/bin/sh
if [ $1 = "1" ]; then
   #We're in Install mode, add module to the config files
   for config in /etc/httpd/conf/{httpd,httpd-perl}.conf; do
     if [ -x /usr/sbin/advxaddmod -a -e $config ]; then
       /usr/sbin/advxaddmod $config \
        extramodules/libdav.so mod_dav.c dav_module \
        define=HAVE_DAV addconf=conf/addon-modules/mod_dav.conf
     fi
   done
   if [ -x /usr/sbin/AESctl ]; then /usr/sbin/AESctl update;fi
fi

if [ $1 -gt 1 ]; then
   #We're in *upgrade mode*. Since we can't be sure the configuration files
   #are sane, remove module from the conf files to clean them, re-add again 
   #in a way that the older module we're replacing won't try to erase (the 
   #post scripts were broken on some packages), and finally clean the module
   #specific config file so it's compatible with the upgrade.
   for config in /etc/httpd/conf/{httpd,httpd-perl}.conf; do
     if [ -x /usr/sbin/advxdelmod -a -e $config ]; then
       /usr/sbin/advxdelmod $config \
       extramodules/libdav.so mod_dav.c dav_module \
       define=HAVE_DAV addconf=conf/addon-modules/mod_dav.conf
     fi
     if [ -x /usr/sbin/advxaddmod -a -e $config ]; then
       /usr/sbin/advxaddmod $config \
        extramodules/libdav.so mod_dav.c dav_module \
        define=HAVE_DAV addconf=conf/addon-modules/mod_dav.conf
     fi
   done
   if [ -x /usr/sbin/AESctl ]; then /usr/sbin/AESctl update;fi
fi

POSTUN

/bin/sh
if [ $1 = "0" ]; then
   for config in /etc/httpd/conf/{httpd,httpd-perl}.conf; do
     if [ -x /usr/sbin/advxdelmod -a -e $config ]; then
       /usr/sbin/advxdelmod $config \
        extramodules/libdav.so mod_dav.c dav_module \
        define=HAVE_DAV addconf=conf/addon-modules/mod_dav.conf
     fi
   done
   if [ -x /usr/sbin/AESctl ]; then /usr/sbin/AESctl update;fi
fi

/usr/share/rpm-helper/del-user mod_dav $1 apache