This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
atsebay.t-worker/checks-virli-tp1.sh

11 lines
218 B
Bash

#!/bin/sh
STATUS=0
echo -ne "§ 1\tdocker-compose.yml\t\t\t"
VCP=$(find -maxdepth 1 -name "docker-compose.yml" | head -1)
[ -f "$VCP" ] || { echo "NOT FOUND"; STATUS=1; }
[ -f "$VCP" ] && echo "found "
exit $STATUS