9 lines
277 B
Bash
Executable file
9 lines
277 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -x
|
|
|
|
# Make sure cron daemon is still running
|
|
# shellcheck disable=SC2009
|
|
ps -o comm | grep crond || exit 1
|
|
|
|
# Make sure the target container is still running/available
|
|
docker inspect -f '{{.State.Running}}' "$(/find-container.sh)" | grep true || exit 1
|