AzuraCast/util/ansible/roles/services/tasks/main.yml

15 lines
258 B
YAML

---
- name: Enable and restart all core services
service:
name: "{{ item }}"
enabled: yes
state: restarted
ignore_errors: True
with_items:
- "mysql"
- "php8.0-fpm"
- "nginx"
- "redis-server"
- "redis"
- "beanstalkd"