b2ce2172a2
(cherry picked from commit 1a92c63ef6d60e9dcba513ebf60cbd9f18a142e8)
16 lines
210 B
Bash
Executable File
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
|