diff options
Diffstat (limited to 'packages/ubuntu/debian/prerm')
-rwxr-xr-x | packages/ubuntu/debian/prerm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/packages/ubuntu/debian/prerm b/packages/ubuntu/debian/prerm index 58af3b74c..8f91692e0 100755 --- a/packages/ubuntu/debian/prerm +++ b/packages/ubuntu/debian/prerm @@ -1,14 +1,10 @@ #!/bin/sh -e -# Only shut the daemon down if we're really removing the package. If this is -# an upgrade, we will instead do a restart in the postinst... this keeps nprobe -# from being left shut down for a long time, which could pose problems. case "$1" in upgrade) ;; *) - /etc/init.d/nprobe stop ;; esac -exit 0
\ No newline at end of file +exit 0 |