mutualisation scripts prune
This commit is contained in:
parent
ed9972aad1
commit
5edba76fed
22
_podman-common/90_prune_pod.sh
Executable file
22
_podman-common/90_prune_pod.sh
Executable file
|
@ -0,0 +1,22 @@
|
|||
#!/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 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 images
|
||||
for image in ${upstream_images} ; do
|
||||
podman rmi $(podman images -a -q -- ${image}) || echo Image ${image} not found.
|
||||
done
|
|
@ -1,22 +0,0 @@
|
|||
#!/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 images
|
||||
for image in ${upstream_images} ; do
|
||||
podman rmi $(podman images -a -q -- ${image}) || echo Image ${image} not found.
|
||||
done
|
1
podman-framadate/90_prune.sh
Symbolic link
1
podman-framadate/90_prune.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../_podman-common/90_prune_pod.sh
|
|
@ -4,22 +4,7 @@ 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 volume
|
||||
# Run regular prune script for pods
|
||||
../_podman-common/90_prune_pod.sh &&
|
||||
# Remove configuration volume
|
||||
podman unshare rm -rf ~/${confvolume}/
|
||||
|
||||
# remove images
|
||||
for image in ${upstream_images} ; do
|
||||
podman rmi $(podman images -a -q -- ${image}) || echo Image ${image} not found.
|
||||
done
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
#!/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 volume
|
||||
#podman unshare rm -rf ~/${confvolume}/
|
||||
#podman volume rm matrixdotorg_synapse-data
|
||||
#podman volume rm matrixdotorg_synapse-pgsql
|
||||
|
||||
# remove images
|
||||
#for image in ${upstream_images} ; do
|
||||
# podman rmi $(podman images -a -q -- ${image}) || echo Image ${image} not found.
|
||||
#done
|
||||
podman rmi $(podman images -a -q -- ${postgres_image}) || echo Image ${postgres_image} not found.
|
||||
podman rmi $(podman images -a -q -- ${synapse_image}) || echo Image ${synapse_image} not found.
|
1
podman-matrix/90_prune.sh
Symbolic link
1
podman-matrix/90_prune.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../_podman-common/90_prune_pod.sh
|
|
@ -1,22 +0,0 @@
|
|||
#!/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 images
|
||||
for image in ${upstream_images} ; do
|
||||
podman rmi $(podman images -a -q -- ${image}) || echo Image ${image} not found.
|
||||
done
|
1
podman-seafile/90_prune.sh
Symbolic link
1
podman-seafile/90_prune.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
../_podman-common/90_prune_pod.sh
|
Loading…
Reference in a new issue