summaryrefslogtreecommitdiff
path: root/playbooks/tasks/test_and_restart_nginx.yaml
blob: 626db1db106ab206d70b186fa75e8cda4868bdbd (plain)
1
2
3
4
5
6
7
8
9
10
- name: Test nginx configuration
  ansible.builtin.command: nginx -t
  register: nginx_config_test
  changed_when: false

- name: Restart nginx
  ansible.builtin.systemd:
    name: nginx
    state: restarted
  when: nginx_config_test.rc == 0