2022-02-10 21:10:02 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
ABSDIR="$( dirname "$(realpath -s -- "$0")" )"
|
|
|
|
source ${ABSDIR}/../functions.sh
|
|
|
|
source ${ABSDIR}/vars.sh
|
|
|
|
|
|
|
|
ensure_pwd_is_scriptdir
|
|
|
|
ensure_not_root
|
|
|
|
|
|
|
|
# FAIL if container does not exists
|
|
|
|
ensure_container_exists ${container_name}
|
|
|
|
|
|
|
|
# FAIL if container is running
|
|
|
|
ensure_container_not_running ${container_name}
|
|
|
|
|
|
|
|
${ABSDIR}/70_disable.sh
|
|
|
|
|
|
|
|
rm -f ${HOME}/.config/systemd/user/${service_name}
|
|
|
|
systemctl --user daemon-reload
|
2023-04-21 11:53:55 +00:00
|
|
|
podman container rm ${container_name}
|
2022-02-20 11:40:56 +00:00
|
|
|
|
|
|
|
for volume in ${nonpersistent_volumes}; do
|
|
|
|
podman volume rm ${volume}
|
|
|
|
done
|