~ubuntu-branches/ubuntu/warty/sbuild/warty

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Rick Younie
  • Date: 2002-03-03 21:51:51 UTC
  • Revision ID: james.westby@ubuntu.com-20020303215151-50oderv821xp634e
Tags: 0.4
made /etc/sbuild.conf a conffile - thanks Gergely Nagy.
(Closes: #136374)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
 
3
# vim:et
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
# summary of how this script can be called:
 
9
#        * <postinst> `configure' <most-recently-configured-version>
 
10
#        * <old-postinst> `abort-upgrade' <new version>
 
11
#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
 
12
#          <new-version>
 
13
#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
 
14
#          <failed-install-package> <version> `removing'
 
15
#          <conflicting-package> <version>
 
16
# for details, see /usr/share/doc/packaging-manual/
 
17
#
 
18
# quoting from the policy:
 
19
#     Any necessary prompting should almost always be confined to the
 
20
#     post-installation script, and should be protected with a conditional
 
21
#     so that unnecessary prompting doesn't happen if a package's
 
22
#     installation fails and the `postinst' is called with `abort-upgrade',
 
23
#     `abort-remove' or `abort-deconfigure'.
 
24
 
 
25
case "$1" in
 
26
    configure)
 
27
 
 
28
        if ! sg sbuild -c true >/dev/null 2>&1; then                        
 
29
            adduser --group --quiet sbuild
 
30
        fi
 
31
 
 
32
        # fix avg-* files from previous purge too - might have wrong GID
 
33
        chown -R :sbuild /var/lib/sbuild
 
34
        chmod -R g+w /var/lib/sbuild
 
35
        chmod 755 /usr/share/doc/sbuild/bin/* /usr/share/doc/sbuild/chroot/makechroot
 
36
        chmod 644 /usr/share/doc/sbuild/bin/README.bins
 
37
 
 
38
        ;;
 
39
 
 
40
    abort-upgrade|abort-remove|abort-deconfigure)
 
41
 
 
42
        ;;
 
43
 
 
44
    *)
 
45
        echo "postinst called with unknown argument \`$1'" >&2
 
46
        exit 0
 
47
    ;;
 
48
esac
 
49
 
 
50
# dh_installdeb will replace this with shell code automatically
 
51
# generated by other debhelper scripts.
 
52
 
 
53
#DEBHELPER#
 
54
 
 
55
exit 0