14 lines
272 B
Bash
Executable File
14 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove|upgrade|deconfigure)
|
|
if [ -d /run/systemd/system ]; then
|
|
systemctl stop ezcoo-usb-control.service || true
|
|
systemctl disable ezcoo-usb-control.service || true
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|