mirror of
https://dev.lirent.ru/Vatrog/vm-automation-signaling.git
synced 2026-06-25 20:36:36 +03:00
13 lines
202 B
Bash
13 lines
202 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -e
|
||
|
|
case "$1" in
|
||
|
|
remove|deconfigure)
|
||
|
|
if [ -d /run/systemd/system ]; then
|
||
|
|
systemctl disable --now vmsigd.service || true
|
||
|
|
fi
|
||
|
|
;;
|
||
|
|
upgrade|failed-upgrade)
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
exit 0
|