and added files
[bcm963xx.git] / userapps / opensource / sshd / debian / dropbear.prerm
diff --git a/userapps/opensource/sshd/debian/dropbear.prerm b/userapps/opensource/sshd/debian/dropbear.prerm
new file mode 100755 (executable)
index 0000000..e63cdb8
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/sh
+set -e
+
+test "$1" = 'remove' || test "$1" = 'deconfigure' || exit 0
+if test -x /etc/init.d/dropbear; then
+  if test -x /usr/sbin/invoke-rc.d; then
+    invoke-rc.d dropbear stop
+  else
+    /etc/init.d/dropbear stop
+  fi
+fi