Files
ansible-role-hpa/justfile
2024-11-24 13:24:33 -05:00

13 lines
232 B
Makefile

work_dir := "/tmp/hpa-role"
test *ARGS: clean
@mkdir {{work_dir}}
@ansible-playbook ./tests/test.yml \
--inventory ./tests/inventory \
--extra-vars "work_dir={{work_dir}}" \
{{ARGS}}
clean:
@rm -rf {{work_dir}}