8 lines
134 B
Text
8 lines
134 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# shut down
|
||
|
invoke-rc.d cryptobox stop
|
||
|
|
||
|
# remove symlinks in /etc/rc?.d
|
||
|
[ "$1" = "purge" ] && update-rc.d cryptobox remove
|