Redis: Also install redis-tools

This commit is contained in:
Ludovic Poujol 2017-09-27 17:57:02 +02:00
parent 95c34c5d88
commit 7fa2dcbb28

View file

@ -1,8 +1,11 @@
--- ---
- name: Redis is installed. - name: Redis is installed.
apt: apt:
name: redis-server name: "{{ item }}"
state: present state: present
with_items:
- redis-server
- redis-tools
tags: tags:
- redis - redis
- packages - packages