mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +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
|
||||
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
|
||||
src=/etc/apache2/sites-available/000-default.conf
|
||||
state=absent
|
||||
|
@ -67,7 +67,7 @@
|
|||
- mpm_event.load
|
||||
when: is_debuntu
|
||||
|
||||
- name: create symlinks for mpm-prefork
|
||||
- name: Create symlinks for mpm-prefork
|
||||
file: path=/etc/apache2/mods-enabled/{{ item }}
|
||||
src=/etc/apache2/mods-available/{{ item }}
|
||||
state=link
|
||||
|
@ -76,7 +76,7 @@
|
|||
- mpm_prefork.load
|
||||
when: is_debuntu
|
||||
|
||||
- name: turn on mod_proxy
|
||||
- name: Turn on mod_proxy
|
||||
command: a2enmod {{ item }}
|
||||
with_items:
|
||||
- proxy
|
||||
|
@ -85,7 +85,7 @@
|
|||
- rewrite
|
||||
when: is_debuntu
|
||||
|
||||
- name: create symlinks for enabling our site
|
||||
- name: Create symlinks for enabling our site
|
||||
file: path=/etc/apache2/sites-enabled/{{ item }}
|
||||
src=/etc/apache2/sites-available/{{ item }}
|
||||
state=link
|
||||
|
@ -105,7 +105,7 @@
|
|||
group=root
|
||||
state=directory
|
||||
|
||||
- name: create admin group
|
||||
- name: Create admin group
|
||||
group: name=admin
|
||||
state=present
|
||||
|
||||
|
@ -146,7 +146,7 @@
|
|||
tags:
|
||||
- base
|
||||
|
||||
- name: place the script to generate homepages
|
||||
- name: Place the script to generate homepages
|
||||
template: src=refresh-wiki-docs.sh
|
||||
dest=/usr/bin/iiab-refresh-wiki-docs
|
||||
mode=0755
|
||||
|
|
Loading…
Reference in a new issue