11 lines
288 B
Bash
Executable file
11 lines
288 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ABSDIR="$( dirname "$(readlink -f -- "$0")" )"
|
|
source ${ABSDIR}/../functions.sh
|
|
source ${ABSDIR}/vars.sh
|
|
|
|
# Run regular prune script for pods
|
|
source ${ABSDIR}/../_podman-common/80_destroy_pod.sh &&
|
|
# Remove configuration volume
|
|
podman unshare rm -rf ~/${confvolume}/
|