~ubuntu-branches/ubuntu/lucid/vino/lucid

« back to all changes in this revision

Viewing changes to debian/vino.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2008-05-27 09:06:36 UTC
  • mfrom: (1.1.21 upstream) (2.1.31 hardy)
  • Revision ID: james.westby@ubuntu.com-20080527090636-lg1whxlkub1wtsw7
Tags: 2.22.2-1
New upstream bugfix release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -e
4
 
 
5
 
case "$1" in
6
 
    configure)
7
 
        kill -HUP `pidof bonobo-activation-server` >/dev/null 2>&1 || true
8
 
    ;;
9
 
 
10
 
    abort-upgrade|abort-remove|abort-deconfigure)
11
 
 
12
 
    ;;
13
 
 
14
 
    *)
15
 
        echo "postinst called with unknown argument \`$1'" >&2
16
 
        exit 1
17
 
    ;;
18
 
esac
19
 
 
20
 
#DEBHELPER#
21