checks: Do virli TP1 checks
This commit is contained in:
parent
14b4bafa25
commit
07ea8e1f99
2 changed files with 11 additions and 0 deletions
1
checks-6.sh
Symbolic link
1
checks-6.sh
Symbolic link
|
@ -0,0 +1 @@
|
|||
checks-virli-tp1.sh
|
10
checks-virli-tp1.sh
Normal file
10
checks-virli-tp1.sh
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/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
|
Reference in a new issue