diff --git a/Makefile b/Makefile index 215f131..646af1a 100644 --- a/Makefile +++ b/Makefile @@ -1,70 +1,73 @@ # vim: set noexpandtab: ANSIBLE = ansible-playbook SKIP_TAGS = --skip-tags "init,common" status: nova list # Everything init: $(ANSIBLE) main.yml up: $(ANSIBLE) main.yml $(SKIP_TAGS) restart: $(ANSIBLE) restart.yml reboot: $(ANSIBLE) reboot.yml stop: $(ANSIBLE) stop.yml # Specific app: $(ANSIBLE) main.yml --tags conf-app $(SKIP_TAGS) lbs: $(ANSIBLE) main.yml --tags conf-lbs $(SKIP_TAGS) monit: $(ANSIBLE) main.yml --tags conf-monit $(SKIP_TAGS) backup: $(ANSIBLE) main.yml --tags conf-backup $(SKIP_TAGS) dbs: $(ANSIBLE) main.yml --tags conf-dbs $(SKIP_TAGS) ci: $(ANSIBLE) main.yml --tags jenkins $(SKIP_TAGS) ci-slave: $(ANSIBLE) main.yml --tags conf-ci-slave $(SKIP_TAGS) shib: $(ANSIBLE) main.yml --tags conf-shib $(SKIP_TAGS) gluster: $(ANSIBLE) main.yml --tags gluster $(SKIP_TAGS) +common: + $(ANSIBLE) main.yml --tags common --skip-tags init + # Utils update-phab: $(ANSIBLE) update_phab.yml security: $(ANSIBLE) security-update.yml arbitrator: $(ANSIBLE) arbitrator.yml test: $(ANSIBLE) test.yml clean: $(ANSIBLE) cleanup.yml