Skip to content

Commit

Permalink
Removing ArchLinux references.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdebock committed Jan 4, 2020
1 parent 9c3b43c commit 56c3704
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ _httpd_packages:
- apache2
- apache2-ssl
- apache2-proxy
Archlinux:
- apache
Debian:
- apache2
Suse:
Expand All @@ -40,7 +38,6 @@ httpd_service: "{{ _httpd_service[ansible_os_family] | default(_httpd_service['d
_httpd_server_root:
default: /etc/httpd
Alpine: /etc/apache2
Archlinux: /etc/httpd
Debian: /etc/apache2
Suse: /etc/apache2

Expand All @@ -51,7 +48,6 @@ httpd_server_root: "{{ _httpd_server_root[ansible_os_family] | default(_httpd_se
_httpd_config_directory:
default: "{{ httpd_server_root }}/conf.d"
Alpine: "{{ httpd_server_root }}/conf.d"
Archlinux: "{{ httpd_server_root }}/conf/extra"
Debian: "{{ httpd_server_root }}/conf-enabled"
Suse: "{{ httpd_server_root }}/conf.d"

Expand All @@ -60,7 +56,6 @@ httpd_config_directory: "{{ _httpd_config_directory[ansible_os_family] | default
# Every distribution has it's own configuration.
_httpd_config_src:
Alpine: httpd.conf-Alpine.j2
Archlinux: httpd.conf-Archlinux.j2
Debian: apache2.conf-Debian.j2
RedHat: httpd.conf-RedHat.j2
Suse: httpd.conf-Suse.j2
Expand All @@ -69,7 +64,6 @@ httpd_config_src: "{{ _httpd_config_src[ansible_os_family] }}"

_httpd_config_dest:
Alpine: "{{ httpd_server_root }}/httpd.conf"
Archlinux: "{{ httpd_server_root }}/conf/httpd.conf"
Debian: "{{ httpd_server_root }}/httpd.conf"
RedHat: "{{ httpd_server_root }}/conf/httpd.conf"
Suse: "{{ httpd_server_root }}/httpd.conf"
Expand All @@ -87,7 +81,6 @@ httpd_ports_conf: "{{ _httpd_ports_conf[ansible_os_family] }}"
_httpd_data_directory:
default: /var/www/html
Alpine: /var/www/{{ httpd_servername | default(ansible_fqdn) }}
Archlinux: /src/http
RedHat: /var/www/html
Suse: /src/www/htdocs

Expand Down

0 comments on commit 56c3704

Please sign in to comment.