mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
cleaner Ansible messaging
This commit is contained in:
parent
87f55cd628
commit
011005d707
1 changed files with 6 additions and 6 deletions
|
@ -40,7 +40,7 @@
|
||||||
- download
|
- download
|
||||||
when: is_redhat
|
when: is_redhat
|
||||||
|
|
||||||
- name: remove the default apache2 config file
|
- name: Remove the default apache2 config file
|
||||||
file: path=/etc/apache2/sites-enabled/000-default.conf
|
file: path=/etc/apache2/sites-enabled/000-default.conf
|
||||||
src=/etc/apache2/sites-available/000-default.conf
|
src=/etc/apache2/sites-available/000-default.conf
|
||||||
state=absent
|
state=absent
|
||||||
|
@ -67,7 +67,7 @@
|
||||||
- mpm_event.load
|
- mpm_event.load
|
||||||
when: is_debuntu
|
when: is_debuntu
|
||||||
|
|
||||||
- name: create symlinks for mpm-prefork
|
- name: Create symlinks for mpm-prefork
|
||||||
file: path=/etc/apache2/mods-enabled/{{ item }}
|
file: path=/etc/apache2/mods-enabled/{{ item }}
|
||||||
src=/etc/apache2/mods-available/{{ item }}
|
src=/etc/apache2/mods-available/{{ item }}
|
||||||
state=link
|
state=link
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
- mpm_prefork.load
|
- mpm_prefork.load
|
||||||
when: is_debuntu
|
when: is_debuntu
|
||||||
|
|
||||||
- name: turn on mod_proxy
|
- name: Turn on mod_proxy
|
||||||
command: a2enmod {{ item }}
|
command: a2enmod {{ item }}
|
||||||
with_items:
|
with_items:
|
||||||
- proxy
|
- proxy
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
- rewrite
|
- rewrite
|
||||||
when: is_debuntu
|
when: is_debuntu
|
||||||
|
|
||||||
- name: create symlinks for enabling our site
|
- name: Create symlinks for enabling our site
|
||||||
file: path=/etc/apache2/sites-enabled/{{ item }}
|
file: path=/etc/apache2/sites-enabled/{{ item }}
|
||||||
src=/etc/apache2/sites-available/{{ item }}
|
src=/etc/apache2/sites-available/{{ item }}
|
||||||
state=link
|
state=link
|
||||||
|
@ -105,7 +105,7 @@
|
||||||
group=root
|
group=root
|
||||||
state=directory
|
state=directory
|
||||||
|
|
||||||
- name: create admin group
|
- name: Create admin group
|
||||||
group: name=admin
|
group: name=admin
|
||||||
state=present
|
state=present
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@
|
||||||
tags:
|
tags:
|
||||||
- base
|
- base
|
||||||
|
|
||||||
- name: place the script to generate homepages
|
- name: Place the script to generate homepages
|
||||||
template: src=refresh-wiki-docs.sh
|
template: src=refresh-wiki-docs.sh
|
||||||
dest=/usr/bin/iiab-refresh-wiki-docs
|
dest=/usr/bin/iiab-refresh-wiki-docs
|
||||||
mode=0755
|
mode=0755
|
||||||
|
|
Loading…
Reference in a new issue