This commit is contained in:
Wang Sen Di
2025-11-23 14:15:20 +08:00
parent dbd83b7705
commit 6ba67a8d85
22 changed files with 519 additions and 0 deletions

20
boot/uninstall.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env bash
# shellcheck disable=SC1091
if [[ "$CONTAINER_NAME" == "" ]]; then CONTAINER_NAME=$(grep devices </proc/self/cgroup | grep -Po '[0-9a-z]{64}' | cut -c1-12); fi
__main() {
:
env
docker rm -f "$CONTAINER_NAME"
}
__main
__help() {
cat >/dev/null <<-'AEOF'
AEOF
}