2022-01-28 12:37:31 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-01-28 12:55:07 +00:00
|
|
|
ABSDIR="$( dirname "$(realpath -s -- "$0")" )"
|
2022-01-28 12:37:31 +00:00
|
|
|
source ${ABSDIR}/../functions.sh
|
|
|
|
source ${ABSDIR}/vars.sh
|
|
|
|
|
|
|
|
ensure_pwd_is_scriptdir
|
|
|
|
ensure_not_root
|
|
|
|
|
|
|
|
echo "Podman images status..."
|
|
|
|
for image in ${upstream_images} ; do
|
|
|
|
podman images ${image} | grep ${image} || echo Image ${image} not found.
|
|
|
|
done
|
|
|
|
echo
|
|
|
|
echo "Checking pod status..."
|
|
|
|
podman pod ps | grep ${pod_name} || echo Pod ${pod_name} not found.
|
|
|
|
echo
|
|
|
|
echo "Checking systemd unit status..."
|
|
|
|
systemctl --user status ${service_name}
|