redis.yml 305 B

123456789101112
  1. ---
  2. # tasks/SmartOS/redis.yml: Deploy Redis
  3. # Specific to Ubuntu
  4. - include_vars: "{{ item }}"
  5. with_first_found:
  6. - "{{ ansible_distribution }}.yml"
  7. - "{{ ansible_os_family }}.yml"
  8. - default.yml
  9. - name: Ensure Redis is installed
  10. pkgin: name=redis state={{ redis_pkg_state }}