- hosts: octo.fuz.re become: yes tasks: - name: Lighttpd installé apt: name: lighttpd - name: Copie la conf copy: src: files/lighttpd.conf dest: /etc/lighttpd/lighttpd.conf notify: Restart de lighttpd - name: On charge lighttpd service: name: lighttpd state: started enabled: yes handlers: - name: Restart de lighttpd service: name: lighttpd state: restarted