18 lines
536 B
Makefile
18 lines
536 B
Makefile
# SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
define ping
|
|
. ./venv/bin/activate && \
|
|
ansible-playbook -i $(INVENTORY) -f 10 ./ansible/ping.yml
|
|
endef
|
|
|
|
# ```bash
|
|
# INVENTORY=./terraform/dos/hosts.ini make conf.ping
|
|
# ```
|
|
conf.ping: ## Ping all DoS VMs
|
|
$(call ping)
|
|
|
|
help: ## Prints help for targets with comments
|
|
@cat $(MAKEFILE_LIST) | grep -E '^[a-zA-Z_-].+:.*?## .*$$' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|