create check files

This commit is contained in:
Toni de la Fuente
2018-03-20 22:59:34 -04:00
parent 2f761f62a6
commit a21bff31a5
97 changed files with 635 additions and 315 deletions

7
include/awscli_detector Normal file
View File

@@ -0,0 +1,7 @@
# AWS-CLI detector variable
AWSCLI=$(which aws)
if [ -z "${AWSCLI}" ]; then
echo -e "\n$RED ERROR!$NORMAL AWS-CLI (aws command) not found. Make sure it is installed correctly and in your \$PATH\n"
EXITCODE=1
exit $EXITCODE
fi