~ubuntu-branches/ubuntu/utopic/ipfm/utopic

« back to all changes in this revision

Viewing changes to debian/postinst.debhelper

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hocevar (Debian packages)
  • Date: 2004-07-25 22:22:10 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040725222210-c8a4heb1hnbsgvbo
Tags: 0.11.5-4
Fixed major package breakage caused by a wrong DH_COMPAT value.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Automatically added by dh_installinit
 
2
if [ -x "/etc/init.d/ipfm" ]; then
 
3
        update-rc.d ipfm defaults >/dev/null
 
4
        if [ -x /usr/sbin/invoke-rc.d ]; then
 
5
                invoke-rc.d ipfm start || exit 0
 
6
        else
 
7
                /etc/init.d/ipfm start || exit 0
 
8
        fi
 
9
fi
 
10
# End automatically added section