~ubuntu-branches/ubuntu/natty/freeradius/natty-updates

« back to all changes in this revision

Viewing changes to debian/freeradius-postgresql.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Jeremie Corbier
  • Date: 2006-07-08 19:41:05 UTC
  • mto: (3.1.8 edgy) (4.1.3 sid) (1.1.14 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060708194105-bxbr4e6m4dfw2x4x
Tags: upstream-1.1.2
ImportĀ upstreamĀ versionĀ 1.1.2

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
 
        if command -v invoke-rc.d >/dev/null 2>&1; then
8
 
                invoke-rc.d freeradius restart
9
 
        else
10
 
                /etc/init.d/freeradius restart
11
 
        fi
12
 
        ;;
13
 
  abort-upgrade)
14
 
        ;;
15
 
  abort-remove)
16
 
        ;;
17
 
  abort-deconfigure)
18
 
        ;;
19
 
esac
20
 
 
21
 
#DEBHELPER#