repair destroy + specifique matrix
This commit is contained in:
parent
cef10f2120
commit
617f3e409d
|
@ -18,7 +18,6 @@ ${ABSDIR}/70_disable.sh
|
|||
rm -f ${HOME}/.config/systemd/user/${service_name}
|
||||
systemctl --user daemon-reload
|
||||
podman pod rm ${pod_name}
|
||||
podman network rm ${project_name}_default
|
||||
|
||||
for volume in ${nonpersistent_volumes}; do
|
||||
podman volume rm ${volume}
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
../_podman-common/80_destroy_pod.sh
|
10
podman-matrix/80_destroy.sh
Executable file
10
podman-matrix/80_destroy.sh
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/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 pod network
|
||||
podman network rm ${project_name}_default
|
Loading…
Reference in a new issue