mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
17 lines
515 B
YAML
17 lines
515 B
YAML
|
- name: Create home directory
|
||
|
file: path={{ doc_root }}/home
|
||
|
mode=0755
|
||
|
owner={{ apache_data }}
|
||
|
group={{ apache_data }}
|
||
|
state=directory
|
||
|
|
||
|
- name: Install admin home page into apache2
|
||
|
template: src=console/xsce-home-page.conf
|
||
|
dest=/etc/{{ apache_config_dir }}/xsce-home-page.conf
|
||
|
|
||
|
- name: Enable the home page
|
||
|
file: src=/etc/{{ apache_config_dir }}/xsce-home-page.conf
|
||
|
dest=/etc/apache2/sites-enabled/xsce-home-page.conf
|
||
|
state=link
|
||
|
when: is_debuntu
|