- import_playbook: firewall.ansible.yml - hosts: localhost tasks: - name: "network : Populate interfaces" template: src: files/network_interfaces dest: /etc/network/interfaces owner: root group: root mode: "0644" - name: "network : Enable networking service" service: name: networking state: started enabled: true