Changeset 186

Show
Ignore:
Timestamp:
09/16/06 18:28:25 (2 years ago)
Author:
lunar
Message:

Also remove /var/lib/metche on purge.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • debian/trunk/debian/changelog

    r185 r186  
    1414  * Switch to ucf for configuration handling. (Closes: #367545) 
    1515  * Various other fixes in postinst and config script. 
    16   * Add a postrm script to purge the package correctly. 
     16  * Add a postrm script to purge the package correctly: 
     17    - configuration files: /etc/metche.conf, /etc/cron.d/metche 
     18    - /!\ data files: /var/lib/metche /!\ 
    1719  * Move debhelper and add po-debconf to Build-Depends (used in the clean rule). 
    1820  * Add myself as an uploader. 
    1921 
    20  -- Jérémy Bobbio <jeremy.bobbio@etu.upmc.fr>  Sat, 16 Sep 2006 17:34:33 +0200 
     22 -- Jérémy Bobbio <jeremy.bobbio@etu.upmc.fr>  Sat, 16 Sep 2006 18:26:25 +0200 
    2123 
    2224metche (1:1.0-2) unstable; urgency=low 
  • debian/trunk/debian/postrm

    r185 r186  
    2222         rm -f /etc/cron.d/metche 
    2323     fi 
     24 
     25     # Remove data directory 
     26     if [ -d /var/lib/metche ]; then 
     27         rm -rf /var/lib/metche 
     28     fi 
    2429  ;; 
    2530