~ubuntu-branches/ubuntu/maverick/krb5/maverick

« back to all changes in this revision

Viewing changes to debian/krb5-ftpd.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman, Russ Allbery, Sam Hartman
  • Date: 2008-08-21 10:41:41 UTC
  • mfrom: (11.1.15 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080821104141-a0f9c4o4cpo8xd0o
Tags: 1.6.dfsg.4~beta1-4
[ Russ Allbery ]
* Translation updates:
  - Swedish, thanks Martin Bagge.  (Closes: #487669, #491774)
  - Italian, thanks Luca Monducci.  (Closes: #493962)

[ Sam Hartman ]
* Translation Updates:
    - Dutch, Thanks Vincent Zweije, Closes: #495733

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash -e
2
 
# $Id: krb5-ftpd.prerm,v 1.1 2000/10/26 01:31:46 hartmans Exp $
3
 
 
4
 
# If netbase is not installed, then we don't need to do the remove.
5
 
if command -v update-inetd >/dev/null 2>&1; then
6
 
        update-inetd --disable ftp
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if /bin/which update-inetd >/dev/null 2>&1; then
 
6
    update-inetd --disable ftp
7
7
fi
8
8
 
9
9
#DEBHELPER#