14 lines
278 B
YAML
14 lines
278 B
YAML
---
|
|
- name: Install Redis
|
|
apt:
|
|
name: redis
|
|
state: present
|
|
|
|
- name: Configure redis
|
|
lineinfile:
|
|
path: /etc/redis/redis.conf
|
|
regexp: '^#?{{ item.option }} .*'
|
|
line: '{{ item.option }} {{ item.value }}'
|
|
loop: "{{ redis_options }}"
|
|
notify: Restart redis
|