1
0
forked from jchomaz/Vulture

scripts de gestion

This commit is contained in:
2025-11-30 10:22:53 +01:00
parent 7c5a1d7c6b
commit f0b828a615
3 changed files with 48 additions and 0 deletions

11
VContainers/stop.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
echo "Stopping containers..."
podman stop vapp || echo "vapp not running"
podman stop vnode || echo "vnode not running"
podman stop nanomq || echo "nanomq not running"
echo "Removing pod..."
podman pod rm vulture || echo "Pod vulture not found"
echo "Cleanup complete."