~ubuntu-branches/ubuntu/quantal/flow-tools/quantal

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Radu Spineanu
  • Date: 2005-03-12 12:16:25 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050312121625-pie3by46jk459zzv
Tags: 1:0.67-8
Changed build-depends to libmysqlclient12-dev (closes: #299177)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
# postinst for flow-tools
3
 
 
4
 
# Source debconf library.
5
 
if [ -e /usr/share/debconf/confmodule ]; then
6
 
        . /usr/share/debconf/confmodule
7
 
fi
8
 
 
9
 
if [ "$1" != configure ]; then
10
 
        exit 0
11
 
fi
12
 
 
13
 
if [ -x "/etc/init.d/flow-capture" ]; then
14
 
        update-rc.d flow-capture defaults >/dev/null
15
 
        invoke-rc.d flow-capture start
16
 
fi