From ad349d14334a8d266617b157412f6522612f585c Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Fri, 25 Sep 2020 12:23:14 -0400 Subject: [PATCH] Makefile cleanup --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 062c340..1501c07 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,9 @@ +# __ ____ __ +# __ _ ___ _/ /_____ / _(_) /__ +# / ' \/ _ `/ '_/ -_) _/ / / -_) +# /_/_/_/\_,_/_/\_\\__/_//_/_/\__/ +# +# Author: bdebyl (Bastian de Byl) all: lint # Default to all ansible tags to run (passed via 'make deploy TAGS=sometag') @@ -35,9 +41,10 @@ ${VAULT_PASS_FILE}: ${ANSIBLE} ${VAULT_FILE}: ${VAULT_PASS_FILE} ${ANSIBLE_VAULT} create --vault-password-file ${VAULT_PASS_FILE} $@ +# Linting YAML_FILES=$(shell find ansible/ -name '*.yml' -not -name '*vault*') -# Ansible Lint skip list: +# Ansible Lint skip list (https://ansible-lint.readthedocs.io/en/latest/default_rules.html) # [701] - "No 'galaxy_info' found (in role)" ANSIBLE_LINT_SKIP_LIST=701