mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-23 15:56:31 +00:00
10 lines
99 B
Bash
Executable File
10 lines
99 B
Bash
Executable File
#! /bin/bash
|
|
|
|
HEALTH_FILE=/unhealthy
|
|
|
|
if [ -f "$HEALTH_FILE" ]; then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|