#!/usr/bin/ansible-playbook
# vim:ft=ansible:
---
- name: restart apache
  service:
    name: apache2
    state: restarted
  become: yes