13 lines
353 B
Makefile
13 lines
353 B
Makefile
|
SHELL := /bin/bash
|
||
|
.POSIX:
|
||
|
.PHONY: help lint install
|
||
|
|
||
|
help: ## Show this help
|
||
|
@egrep -h '\s##\s' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
|
||
|
|
||
|
lint: ## Lint ansible files with ansible-lint
|
||
|
ansible-lint
|
||
|
|
||
|
install: ## Install or update requirements
|
||
|
ansible-galaxy install -f -r requirements.yml
|