Files
kontor/script/update
T
Thomas Peetz bb701a903d Umstellung auf podman in Arbeit
(cherry picked from commit 1a92c63ef6d60e9dcba513ebf60cbd9f18a142e8)
2026-01-30 10:45:02 +01:00

16 lines
210 B
Bash
Executable File

#!/bin/sh
# script/update:
set -e
cd "$(dirname "$0")/.."
echo "==> Stopping and removing pod kontor"
if podman pod exists kontor; then
podman pod stop kontor
podman pod rm kontor
fi
script/setup