~ubuntu-branches/ubuntu/wily/ntopng/wily

« back to all changes in this revision

Viewing changes to packages/ubuntu/debian.ntopng/postrm

  • Committer: Package Import Robot
  • Author(s): Ludovico Cavedon
  • Date: 2014-04-13 16:25:14 UTC
  • Revision ID: package-import@ubuntu.com-20140413162514-2e00nek0im48e5hj
Tags: upstream-1.1+dfsg2
ImportĀ upstreamĀ versionĀ 1.1+dfsg2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
set -e
 
4
 
 
5
if [ "$1" = "purge" ] ; then
 
6
  update-rc.d ntopng remove >/dev/null
 
7
fi
 
8
 
 
9
exit 0