~ubuntu-branches/ubuntu/lucid/nfs-utils/lucid

« back to all changes in this revision

Viewing changes to debian/nfs-common.postrm

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2006-07-03 10:36:59 UTC
  • mto: (12.1.1 feisty)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20060703103659-71qzs6f21zzmjmhx
Tags: upstream-1.0.8
ImportĀ upstreamĀ versionĀ 1.0.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
#DEBHELPER#
4
 
 
5
 
case "$1" in
6
 
    purge)
7
 
        update-rc.d nfs-common remove >/dev/null
8
 
 
9
 
        rm -f /var/lib/nfs/state    \
10
 
              /var/lib/nfs/sm/*     \
11
 
              /var/lib/nfs/sm.bak/*
12
 
        ;;
13
 
esac