mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 14:03:01 +07:00
17 lines
194 B
Makefile
17 lines
194 B
Makefile
.POSIX:
|
|
|
|
default: run
|
|
|
|
run:
|
|
ansible-playbook \
|
|
--inventory hosts.yml \
|
|
main.yml
|
|
|
|
shutdown:
|
|
ansible-playbook \
|
|
--inventory hosts.yml \
|
|
shutdown.yml
|
|
|
|
lint:
|
|
ansible-lint --project-dir .
|