diff --git a/roles/desktop-common/tasks/apache.yml b/roles/desktop-common/tasks/apache.yml deleted file mode 100644 index 4fcc8d1..0000000 --- a/roles/desktop-common/tasks/apache.yml +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/ansible-playbook -# vim:ft=ansible: ---- -- name: Set up local Apache - block: - - name: Set up Apache - block: - - name: Create webroot - file: - path: "/var/www/localhost" - mode: "0755" - state: directory - - name: Clone repo - git: - repo: "{{ desktop_web_repo }}" - dest: "/var/www/localhost" - notify: restart apache - - name: Copy over virtual host configs - template: - src: apache2-vhost.conf - dest: "/etc/apache2/sites-available/localhost.conf" - notify: restart apache - - name: Enable config - command: - cmd: "a2ensite localhost.conf" - creates: "/etc/apache2/sites-enabled/localhost.conf" - notify: restart apache - become: yes diff --git a/roles/desktop-common/tasks/main.yml b/roles/desktop-common/tasks/main.yml index 9d764ad..59358a4 100644 --- a/roles/desktop-common/tasks/main.yml +++ b/roles/desktop-common/tasks/main.yml @@ -42,9 +42,6 @@ - name: Configure custom kernel modules include_tasks: dkms.yml tags: [ dkms ] - - name: Configure local Apache - include_tasks: apache.yml - tags: [ apache ] - name: Configure SSH include_tasks: sshd.yml - name: Configure system packages