mirror of
https://github.com/AsamK/signal-cli
synced 2025-09-04 05:00:39 +00:00
18 lines
260 B
Bash
Executable file
18 lines
260 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove|deconfigure|remove-in-favour|deconfigure-in-favour)
|
|
service signal stop
|
|
;;
|
|
upgrade|failed-upgrade)
|
|
;;
|
|
*)
|
|
echo "prerm called with unknown argument \`$1'" >&2
|
|
;;
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|