~ubuntu-branches/ubuntu/hardy/mime-support/hardy

« back to all changes in this revision

Viewing changes to debian/#postinst#

  • Committer: Bazaar Package Importer
  • Author(s): Brian White
  • Date: 2004-03-03 07:47:41 UTC
  • Revision ID: james.westby@ubuntu.com-20040303074741-1b96w5g6vqqafdxs
Tags: 3.26-1
added more mime types (closes: #235663, #225222)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh -e
 
2
 
 
3
 
 
4
if [ "$1" = "configure" ]; then
 
5
    if [ -d /usr/doc -a ! -e /usr/doc/mime-support -a -d /usr/share/doc/mime-support ]; then
 
6
        ln -sf ../share/doc/mime-support /usr/doc/mime-support
 
7
    fi
 
8
fi
 
9
 
 
10
 
 
11
# Remove the old status directory
 
12
if [ ! -e
 
13
rm -rf /var/lib/mime
 
14
 
 
15
 
 
16
# Run the update program
 
17
if [ -x /usr/sbin/update-mime ]; then
 
18
    update-mime
 
19
fi