Skip to content

Commit

Permalink
add memcached installation step
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrzejMorawski00 committed Feb 2, 2025
1 parent 7730134 commit 7340218
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions infra/playbooks/dev/playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,19 @@
- python3-pip
become: yes

- name: Install Memcached
apt:
name: memcached
state: present
become: yes

- name: Ensure Memcached is running
service:
name: memcached
state: started
enabled: yes
become: yes

- name: Install redis
apt:
name: redis-server
Expand Down

0 comments on commit 7340218

Please sign in to comment.