--- - name: Install Apache apt: pkg=apache2-mpm-prefork state=present - name: Delete default Apache vhost file: path=/etc/apache2/sites-enabled/000-default state=absent notify: Restart Apache - name: Generate Vhosts template: src=vhost.conf dest=/etc/apache2/sites-enabled/{{ item.hostname }}.conf with_items: vhosts notify: Restart Apache