Makefile 477 B

1234567891011121314151617181920212223242526
  1. INVENTORY?=dortmund
  2. ANSIBLE=ansible-playbook -i inventories/$(INVENTORY)
  3. .PHONY: setup test update manage-users check-playbooks
  4. setup:
  5. ./extensions/setup/setup.sh
  6. update:
  7. ./extensions/setup/role_update.sh
  8. test: check-playbooks
  9. ./extensions/test/execute_tests.sh
  10. check-playbooks:
  11. ./extensions/test/check_playbooks.sh
  12. manage-users:
  13. $(ANSIBLE) playbooks/manage-users.yml
  14. mapserver:
  15. $(ANSIBLE) playbooks/mapserver.yml
  16. supernodes:
  17. $(ANSIBLE) playbooks/supernode.yml