~ubuntu-branches/ubuntu/edgy/tipa/edgy

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-06-19 11:42:41 UTC
  • mfrom: (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060619114241-ko4dkfuau1gkfxa3
Tags: 2:1.3-4
debian/postrm: Removed this file, whose job is done automatically by
dh_installtex (this should hopefully really closes: #335990).  Thanks
again to Norbert Preining for the heads up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -
2
 
# postinst of package tipa
3
 
# Rafael Laboissiere <rafael@debian.org>
4
 
 
5
 
set -e
6
 
 
7
 
case "$1" in
8
 
    configure)
9
 
      if [ -x /usr/bin/texhash ] ; then \
10
 
         /usr/bin/texhash ; \
11
 
      fi
12
 
      if [ -x /usr/sbin/update-updmap ] ; then \
13
 
         /usr/sbin/update-updmap ; \
14
 
      fi
15
 
      if [ -x /usr/bin/updmap ] ; then \
16
 
         /usr/bin/updmap ; \
17
 
      fi
18
 
        ;;
19
 
    abort-upgrade | abort-deconfigure | abort-remove)
20
 
        ;;
21
 
    *)
22
 
        echo "$0: incorrect arguments: $*" >&2
23
 
        exit 1
24
 
        ;;
25
 
esac
26
 
 
27
 
#DEBHELPER#