mastible/roles/mastodon-redis/tasks/main.yml

9 lines
178 B
YAML
Raw Normal View History

2017-11-26 22:37:15 +00:00
---
# This playbook installs Redis for Mastodon's user
- name: Install redis
apt: name={{ item }} state=latest update_cache=yes
with_items:
- redis
- redis-server