ansible-role-mastodon/tasks/main.yml

16 lines
328 B
YAML
Raw Normal View History

2022-11-19 10:10:57 +01:00
---
2022-11-20 19:55:08 +01:00
- name: Increase mmap counts
ansible.posix.sysctl:
name: vm.max_map_count
value: '262144'
state: present
2022-11-19 10:10:57 +01:00
- name: Ensure bare metal installation
include_tasks: bare.yml
when: mastodon_bare_installation
- name: Ensure docker installation
include_tasks: docker.yml
when: not mastodon_bare_installation