summaryrefslogtreecommitdiffstats
path: root/acid/cyche-remove
diff options
context:
space:
mode:
Diffstat (limited to 'acid/cyche-remove')
-rwxr-xr-xacid/cyche-remove15
1 files changed, 0 insertions, 15 deletions
diff --git a/acid/cyche-remove b/acid/cyche-remove
deleted file mode 100755
index c988efe..0000000
--- a/acid/cyche-remove
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-# cyche-remove <name>
-#
-# Stop the service <name>, which was previously managed by cychedelic, and
-# remove associated files.
-
-name=$(cat "/services/$1/.git/previous_slug")
-[ -z "$name" ] && name="$1"
-
-docker compose --project-name "$name" down
-
-echo "Removing files..."
-rm -rf "/services/$1"
-echo "Done."