~ubuntu-branches/ubuntu/intrepid/muse/intrepid

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-gyxa3yivcs3zh5fa
Tags: 0.5.2-1.2
* NMU.
* widgets/Makefile.in, widgets/Makefile.am: Remove broken rules to
  build files that aren't used anyway. Closes: #143985
* debian/control: More tiny formatting tweaks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh -e
 
2
. /usr/share/debconf/confmodule
 
3
 
 
4
case "$1" in
 
5
    configure)
 
6
    # Set muse setuid root?
 
7
    db_get muse/muse-setuid
 
8
        if [ "$RET" = "true" ]; then
 
9
            chown root /usr/bin/muse
 
10
            chmod u+s /usr/bin/muse
 
11
        fi
 
12
    ;;
 
13
 
 
14
    abort-upgrade|abort-remove|abort-deconfigure)
 
15
 
 
16
    ;;
 
17
 
 
18
    *)
 
19
        echo "postinst called with unknown argument \`$1'" >&2
 
20
        exit 1
 
21
    ;;
 
22
esac
 
23
 
 
24
#DEBHELPER#
 
25
 
 
26
 
 
27
exit 0
 
28
 
 
29