Skip to content

Commit

Permalink
Ansible 2 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Oct 20, 2016
1 parent 0125e57 commit 804516b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
apt:
name: "{{ item }}"
state: latest
with_items: percona_toolkit_dependencies
with_items: "{{ percona_toolkit_dependencies }}"
tags:
- percona-toolkit-install-dependencies
2 changes: 1 addition & 1 deletion tasks/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
weekday: "{{ item.weekday | default('*') }}"
cron_file: percona-toolkit
user: root
with_items: percona_toolkit_cron_jobs
with_items: "{{ percona_toolkit_cron_jobs }}"
tags:
- percona-toolkit-jobs-configure
2 changes: 1 addition & 1 deletion tasks/repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
repo: "{{ item.type }} {{ item.url }} {{ item.component }}"
state: present
update_cache: true
with_items: percona_toolkit_repositories
with_items: "{{ percona_toolkit_repositories }}"
tags:
- percona-toolkit-repository-add

Expand Down

0 comments on commit 804516b

Please sign in to comment.