From 07573ab09c3bcc4d1603aaf10688fc074bc69656 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20Rosenkr=C3=A4nzer?= Date: Mon, 16 Dec 2024 20:53:31 +0100 Subject: [PATCH] Remove /federated/apps/plane when uninstalling plane --- lib/plane.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/plane.sh b/lib/plane.sh index 458df9f..245a8b5 100644 --- a/lib/plane.sh +++ b/lib/plane.sh @@ -482,4 +482,5 @@ start_plane() { uninstall_plane() { docker exec postgresql psql -U postgres -c "DROP DATABASE plane" &> /dev/null docker exec postgresql psql -U postgres -c "DROP USER plane" &> /dev/null + rm -rf /federated/apps/plane }