Skip to content

Commit

Permalink
Fix ansible warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Dec 12, 2019
1 parent 819d4b3 commit dcaffd3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sudo: required
dist: trusty
dist: xenial

language: python
python: "2.7"
Expand Down Expand Up @@ -93,7 +93,7 @@ script:
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
- if [ "$ANSIBLE_VERSION" = "latest" ]; then ansible-lint tests/test.yml || true; fi
- if [ "$ANSIBLE_VERSION" = "latest" ]; then ansible-lint tests/test.yml; fi

notifications:
email: false
Expand Down
2 changes: 1 addition & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ galaxy_info:
galaxy_tags:
- system
- database
- database:sql
- sql
dependencies: []
6 changes: 2 additions & 4 deletions tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@
---
- name: install | dependencies
apt:
name: "{{ item }}"
name: "{{ percona_client_dependencies }}"
state: "{{ apt_install_state | default('latest') }}"
with_items: "{{ percona_client_dependencies }}"
tags:
- percona-client-install-dependencies

- name: install | additional
apt:
name: "{{ item }}"
name: "{{ percona_client_install }}"
state: "{{ apt_install_state | default('latest') }}"
with_items: "{{ percona_client_install }}"
tags:
- percona-client-install-additional

0 comments on commit dcaffd3

Please sign in to comment.