Changeset 61

Show
Ignore:
Timestamp:
01/02/04 02:41:24 (8 years ago)
Author:
toreanderson
Message:

Ensure the migrated template files are renamed as appropriate also. Update
timestamp in changelog.. I expect to be uploading this RSN.

Files:

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.8 to 1.9
    r55 r61  
    4444        old files from LRRD. 
    4545 
    46  -- Tore Anderson <tore@debian.org>  Sat, 17 Jan 2004 21:28:34 +0100 
     46 -- Tore Anderson <tore@debian.org>  Sun, 01 Feb 2004 02:41:50 +0100 
    4747 
    4848lrrd (0.9.9r5-1) unstable; urgency=low 
  • trunk/dists/debian/munin.preinst

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r21 r61  
    5353         
    5454        for f in /etc/lrrd/templates/*; do 
    55                 migrate $f /etc/munin/templates${f#/etc/lrrd/templates} 
     55                case "$f" in 
     56                        /etc/lrrd/templates/lrrd-domainview.tmpl) 
     57                                migrate $f /etc/munin/templates/munin-domainview.tmpl 
     58                                ;; 
     59                        /etc/lrrd/templates/lrrd-nodeview.tmpl) 
     60                                migrate $f /etc/munin/templates/munin-nodeview.tmpl 
     61                                ;; 
     62                        /etc/lrrd/templates/lrrd-overview.tmpl) 
     63                                migrate $f /etc/munin/templates/munin-overview.tmpl 
     64                                ;; 
     65                        /etc/lrrd/templates/lrrd-serviceview.tmpl) 
     66                                migrate $f /etc/munin/templates/munin-serviceview.tmpl 
     67                                ;; 
     68                        *) 
     69                                migrate $f /etc/munin/templates${f#/etc/lrrd/templates} 
     70                                ;; 
     71                esac 
    5672        done 
    5773