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