aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/memcached/tasks/main.yml
blob: 58a7ae3e924fdfe8c3e0fa76ac96413bd75b52d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- include_vars: "{{ ansible_os_family }}.yml"

- name: install packages
  action: "{{ ansible_pkg_mgr }} name={{ item }} state=latest update_cache=yes"
  with_items: packages | union(packages_noarch)

- name: change memcache listen ip
  lineinfile: dest=/etc/memcached.conf regexp="^-l " line="-l 0.0.0.0"

- name: restart services
  service: name={{ item }} state=restarted enabled=yes
  with_items: services| union(services_noarch)

- meta: flush_handlers