switch all the handlers to import and drop the global static import

This commit is contained in:
Kevin Fenzi 2017-10-15 20:29:59 +00:00
parent a4ca0db30c
commit 69fd8d117a
148 changed files with 254 additions and 255 deletions

View file

@ -31,7 +31,7 @@
- include_tasks: "{{ tasks_path }}/motd.yml"
handlers:
- include_tasks: "{{ handlers_path }}/restart_services.yml"
- import_tasks: "{{ handllers_path }}/restart_services.yml"
- name: deploy mdapi itself
hosts: mdapi-stg:mdapi
@ -48,7 +48,7 @@
- { role: plus-plus-service, when: env == "staging" }
handlers:
- include_tasks: "{{ handlers_path }}/restart_services.yml"
- import_tasks: "{{ handllers_path }}/restart_services.yml"
- name: set up fedmsg
hosts: mdapi-stg:mdapi
@ -64,4 +64,4 @@
- fedmsg/base
handlers:
- include_tasks: "{{ handlers_path }}/restart_services.yml"
- import_tasks: "{{ handllers_path }}/restart_services.yml"