#!/bin/sh set -e case "$1" in remove|purge) systemctl stop vpp-maglev.service || true systemctl disable vpp-maglev.service || true systemctl stop vpp-maglev-frontend.service || true systemctl disable vpp-maglev-frontend.service || true ;; esac