mirror of
https://github.com/Dvorinka/beszel.git
synced 2026-06-04 13:22:57 +00:00
10 lines
160 B
Bash
10 lines
160 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
SERVICE=beszel-agent
|
|
|
|
deb-systemd-invoke stop "$SERVICE".service
|
|
if [ "$1" = "remove" ]; then
|
|
deb-systemd-helper purge "$SERVICE".service
|
|
fi
|