2021-06-04 17:36:50 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
ABSDIR="$( dirname "$(readlink -f -- "$0")" )"
|
|
|
|
source ${ABSDIR}/../functions.sh
|
|
|
|
source ${ABSDIR}/vars.sh
|
|
|
|
|
|
|
|
ensure_pwd_is_scriptdir
|
|
|
|
ensure_not_root
|
|
|
|
|
|
|
|
# FAIL if pod is running
|
|
|
|
ensure_pod_not_running ${pod_name}
|
|
|
|
|
|
|
|
# FAIL if pod exists
|
|
|
|
ensure_pod_not_exists ${pod_name}
|
|
|
|
|
|
|
|
# FAIL if systemd unit exists
|
|
|
|
ensure_systemd_unit_not_exists ${service_name}
|
|
|
|
|
|
|
|
# remove date
|
2021-06-06 12:52:33 +00:00
|
|
|
podman unshare rm -rf ~/${confvolume}/
|
2021-06-04 17:36:50 +00:00
|
|
|
|
|
|
|
# remove images
|
|
|
|
for image in ${upstream_images} ; do
|
2021-06-12 19:36:35 +00:00
|
|
|
podman rmi $(podman images -a -q -- ${image}) || echo Image ${image} not found.
|
2021-06-04 17:36:50 +00:00
|
|
|
done
|