mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 10:57:01 +00:00
8e1ec24f55
--HG-- extra : convert_revision : 4c3428781bc8faf0fd7cadd7099fbd7f4ea386e7
12 lines
232 B
Bash
12 lines
232 B
Bash
#!/bin/sh
|
|
set -u
|
|
|
|
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
|