diff options
author | liyuenan <liyuenan@huawei.com> | 2016-12-22 16:59:08 +0800 |
---|---|---|
committer | liyuenan <liyuenan@huawei.com> | 2016-12-26 17:54:43 +0800 |
commit | 6072a49adb33f2bce3f48b9c7b8be7d96cf8501c (patch) | |
tree | a78a15b915741bb3ef7ddd4a61a801dd9f46d577 /deploy/adapters/ansible/roles/aodh | |
parent | a9041dbf7b68f56169e82de3c37601b7e86867b0 (diff) |
Update ansible version
JIRA: COMPASS-511
Change-Id: Id0e83c65a08c9f9036b5d3a597b905e8a7bde6e8
Signed-off-by: liyuenan <liyuenan@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/aodh')
-rw-r--r-- | deploy/adapters/ansible/roles/aodh/handlers/main.yml | 2 | ||||
-rw-r--r-- | deploy/adapters/ansible/roles/aodh/tasks/aodh_install.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/deploy/adapters/ansible/roles/aodh/handlers/main.yml b/deploy/adapters/ansible/roles/aodh/handlers/main.yml index b3399e0c..a652ea4b 100644 --- a/deploy/adapters/ansible/roles/aodh/handlers/main.yml +++ b/deploy/adapters/ansible/roles/aodh/handlers/main.yml @@ -9,5 +9,5 @@ --- - name: restart aodh services service: name={{ item }} state=restarted enabled=yes - with_items: services | union(services_noarch) + with_items: "{{ services | union(services_noarch) }}" diff --git a/deploy/adapters/ansible/roles/aodh/tasks/aodh_install.yml b/deploy/adapters/ansible/roles/aodh/tasks/aodh_install.yml index d8a82270..4b86f7fd 100644 --- a/deploy/adapters/ansible/roles/aodh/tasks/aodh_install.yml +++ b/deploy/adapters/ansible/roles/aodh/tasks/aodh_install.yml @@ -11,7 +11,7 @@ - name: install aodh packages action: "{{ ansible_pkg_mgr }} name={{ item }} state=present" - with_items: packages | union(packages_noarch) + with_items: "{{ packages | union(packages_noarch) }}" - name: update aodh conf template: src={{ item }} dest=/etc/aodh/aodh.conf backup=yes @@ -22,7 +22,7 @@ - name: write services to monitor list lineinfile: dest=/opt/service create=yes line='{{ item }}' - with_items: services | union(services_noarch) + with_items: "{{ services | union(services_noarch) }}" - name: remove default sqlite db shell: rm /var/lib/aodh/aodh.sqlite || touch aodh.sqllite.db.removed |