Fix CI
This commit is contained in:
parent
2e753db873
commit
24331ca25b
5 changed files with 9 additions and 9 deletions
4
base.yml
4
base.yml
|
@ -2,8 +2,8 @@
|
||||||
# Put a common configuration on all servers
|
# Put a common configuration on all servers
|
||||||
- hosts: all
|
- hosts: all
|
||||||
roles:
|
roles:
|
||||||
- baseconfig
|
- baseconfig
|
||||||
- basesecurity
|
- basesecurity
|
||||||
|
|
||||||
# Plug LDAP on all servers
|
# Plug LDAP on all servers
|
||||||
- hosts: all
|
- hosts: all
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
- nginx
|
- nginx
|
||||||
- mariadb-server
|
- mariadb-server
|
||||||
state: present
|
state: present
|
||||||
update_cache: yes
|
update_cache: true
|
||||||
register: apt_result
|
register: apt_result
|
||||||
retries: 3
|
retries: 3
|
||||||
until: apt_result is succeeded
|
until: apt_result is succeeded
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
- name: Activate prometheus-node-exporter service
|
- name: Activate prometheus-node-exporter service
|
||||||
systemd:
|
systemd:
|
||||||
name: prometheus-node-exporter
|
name: prometheus-node-exporter
|
||||||
enabled: yes
|
enabled: true
|
||||||
state: started
|
state: started
|
||||||
|
|
||||||
# Doesn't work on Debian Stretch
|
# Doesn't work on Debian Stretch
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
- name: Activate prometheus service
|
- name: Activate prometheus service
|
||||||
systemd:
|
systemd:
|
||||||
name: prometheus
|
name: prometheus
|
||||||
enabled: yes
|
enabled: true
|
||||||
state: started
|
state: started
|
||||||
|
|
||||||
- name: Indicate role in motd
|
- name: Indicate role in motd
|
||||||
|
|
|
@ -12,15 +12,15 @@
|
||||||
# Install EtherPad on EtherPad containers
|
# Install EtherPad on EtherPad containers
|
||||||
- hosts: pad.adm.auro.re
|
- hosts: pad.adm.auro.re
|
||||||
roles:
|
roles:
|
||||||
- debian-backports
|
- debian-backports
|
||||||
- nodejs
|
- nodejs
|
||||||
- etherpad
|
- etherpad
|
||||||
|
|
||||||
# Install DokuWiki on the wiki TEST container
|
# Install DokuWiki on the wiki TEST container
|
||||||
# When it will be operational, horus-wikitest will replace horus-wiki
|
# When it will be operational, horus-wikitest will replace horus-wiki
|
||||||
- hosts: horus-wikitest
|
- hosts: horus-wikitest
|
||||||
roles:
|
roles:
|
||||||
- dokuwiki
|
- dokuwiki
|
||||||
|
|
||||||
# Install NGINX with reverse proxy conf
|
# Install NGINX with reverse proxy conf
|
||||||
- hosts: proxy.adm.auro.re
|
- hosts: proxy.adm.auro.re
|
||||||
|
|
Loading…
Reference in a new issue