mirror of
https://github.com/Dvorinka/beszel.git
synced 2026-06-04 05:12:56 +00:00
9 lines
119 B
Bash
9 lines
119 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "purge" ]; then
|
|
. /usr/share/debconf/confmodule
|
|
db_purge
|
|
rm /etc/beszel-agent.conf
|
|
fi
|