2018-02-05 09:37:14 +00:00
|
|
|
---
|
|
|
|
- name: Install yum packages
|
2019-12-04 12:54:56 +00:00
|
|
|
yum:
|
|
|
|
name:
|
|
|
|
- redis
|
|
|
|
state: present
|
2018-02-05 09:37:14 +00:00
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
|
|
|
# Prerequisite for Debian and Ubuntu
|
|
|
|
- name: Install apt packages
|
2019-12-04 12:54:56 +00:00
|
|
|
apt:
|
|
|
|
pkg:
|
|
|
|
- redis-server
|
|
|
|
state: present
|
|
|
|
force: yes
|
2018-02-05 09:37:14 +00:00
|
|
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|
|
|
|
|
|
|
|
# Prerequisite for MACOS
|
|
|
|
- name: install prequisites for macos
|
2019-12-04 12:54:56 +00:00
|
|
|
homebrew:
|
|
|
|
name:
|
|
|
|
- redis
|
|
|
|
state: present
|
2018-02-05 09:37:14 +00:00
|
|
|
when: ansible_distribution == 'MacOSX'
|
|
|
|
...
|