diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2016-01-21 12:24:24 -0500 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2016-01-21 12:24:24 -0500 |
commit | bef3647b3b6db7e692b3306d83038b4eb8b71de2 (patch) | |
tree | 1732dbb203a85c2ea495af595ea94474df42453a /roles/os_zabbix/tasks | |
parent | c6e6a4bfb359add31c3677df18d5f92220d25a68 (diff) | |
parent | 8170207c20642eb1db973f2d570b0deb7b2add8e (diff) | |
download | openshift-bef3647b3b6db7e692b3306d83038b4eb8b71de2.tar.gz openshift-bef3647b3b6db7e692b3306d83038b4eb8b71de2.tar.bz2 openshift-bef3647b3b6db7e692b3306d83038b4eb8b71de2.tar.xz openshift-bef3647b3b6db7e692b3306d83038b4eb8b71de2.zip |
Merge pull request #1254 from twiest/pr
Added template for config loop.
Diffstat (limited to 'roles/os_zabbix/tasks')
-rw-r--r-- | roles/os_zabbix/tasks/main.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/roles/os_zabbix/tasks/main.yml b/roles/os_zabbix/tasks/main.yml index 7552086d4..1c8d88854 100644 --- a/roles/os_zabbix/tasks/main.yml +++ b/roles/os_zabbix/tasks/main.yml @@ -41,6 +41,10 @@ tags: - zagg_server +- include_vars: template_config_loop.yml + tags: + - config_loop + - name: Include Template Heartbeat include: ../../lib_zabbix/tasks/create_template.yml vars: @@ -150,3 +154,13 @@ password: "{{ ozb_password }}" tags: - zagg_server + +- name: Include Template Config Loop + include: ../../lib_zabbix/tasks/create_template.yml + vars: + template: "{{ g_template_config_loop }}" + server: "{{ ozb_server }}" + user: "{{ ozb_user }}" + password: "{{ ozb_password }}" + tags: + - config_loop |