~ubuntu-branches/ubuntu/intrepid/gnunet/intrepid

« back to all changes in this revision

Viewing changes to debian/gnunet-server.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2008-01-31 17:40:18 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20080131174018-sfnbb8wv7p4nmut1
Tags: 0.7.3-2ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/rules:
    = Make use of code from cdbs' clean-la.mk file to clear the
      dependency_libs field in all .la files in the gnunet-dev package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
then
7
7
        if [ -x /usr/sbin/invoke-rc.d ]
8
8
        then
9
 
                invoke-rc.d gnunet-server stop || exit 0
 
9
                invoke-rc.d gnunet-server stop || exit "${?}"
10
10
        else
11
 
                /etc/init.d/gnunet-server stop || exit 0
 
11
                /etc/init.d/gnunet-server stop || exit "${?}"
12
12
        fi
13
13
fi
14
14