vpp-maglevd ships maglevd, maglevd-frontend, both systemd units, and the config conffiles. vpp-maglev ships maglevc and maglevt as pure client tools so jump hosts and workstations can install them without pulling in the daemon. pkg-deb now emits four .debs per release (2 packages x 2 archs); build-deb.sh takes a package-name argument and dispatches accordingly.
11 lines
288 B
Bash
11 lines
288 B
Bash
#!/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
|