Files @ 7cabc17c71c3
Branch filter:

Location: majic-ansible-roles/roles/web_server/handlers/main.yml

branko
MAR-218: Quote all octal values in YAML files:

- Fixes linting errors, and ensures there is no ambiguity in case of
YAML specification changes.
---

- name: Reload systemd
  systemd:
    daemon_reload: true

- name: Restart nginx
  service:
    name: nginx
    state: restarted

- name: Restart PHP-FPM
  service:
    name: "{{ php_fpm_service_name }}"
    state: restarted