~ubuntu-branches/ubuntu/precise/nis/precise

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Steve Langasek
  • Date: 2012-02-28 00:20:56 UTC
  • Revision ID: steve.langasek@canonical.com-20120228002056-u2n5yb61ld32xnof
* Convert to native upstart jobs, with a versioned dependency on
  upstart (>= 0.9.7-2) because we use the wait-for-state job.  LP: #569757.
* Depend on rpcbind (>= 0.2.0-6ubuntu1) instead of portmap to ensure our
  upstart job dependencies are satisfied.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
case "$1" in
17
17
        purge)
18
 
                update-rc.d nis remove >/dev/null
19
18
                rm -f /etc/default/nis
20
19
                rm -f /etc/defaultdomain
21
20
                rm -r /var/yp
22
 
                exit 0
23
21
                ;;
24
22
        remove)
25
23
                ;;
27
25
                ;;
28
26
esac
29
27
 
 
28
#DEBHELPER#
 
29
 
30
30
exit 0