Changeset 197

Show
Ignore:
Timestamp:
10/30/06 18:04:31 (2 years ago)
Author:
lunar
Message:

Only initialize metche data during postinst when the package was not configured
before. (Closes: #391059)

Files:

Legend:

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

    r196 r197  
    22 
    33  * Build .deb in binary-indep target instead of binary-arch. 
     4  * Only initialize metche data during postinst when the package 
     5    was not configured before. (Closes: #391059) 
    46 
    5  -- Jérémy Bobbio <jeremy.bobbio@etu.upmc.fr>  Mon, 30 Oct 2006 17:56:48 +0100 
     7 -- Jérémy Bobbio <jeremy.bobbio@etu.upmc.fr>  Mon, 30 Oct 2006 18:03:00 +0100 
    68 
    79metche (1:1.1-1) unstable; urgency=low 
  • debian/trunk/debian/postinst

    r185 r197  
    3939    rm -f "$TEMPFILE" 
    4040 
    41     metche cron 
     41    # Initialize metche data only when it was not configured before 
     42    # (= no previous version number given as a second argument) 
     43    if [ -z "$2" ]; then 
     44        metche cron 
     45    fi 
    4246  ;; 
    4347