Merge branch 'fix_ci' into 'master'

Clean up files to make yamllint happy

See merge request aurore/ansible!7
This commit is contained in:
Alexandre IOOSS 2019-03-03 09:18:50 +01:00
commit b382e6b5c8
16 changed files with 20 additions and 21 deletions

View file

@ -3,6 +3,7 @@
- hosts: synapse.adm.auro.re - hosts: synapse.adm.auro.re
vars: vars:
mxisd_version: 1.3.1 mxisd_version: 1.3.1
synapse_rest_auth_url: https://raw.githubusercontent.com/kamax-matrix/matrix-synapse-rest-auth/master/rest_auth_provider.py
roles: roles:
- debian-backports - debian-backports
- matrix-synapse - matrix-synapse

View file

@ -5,7 +5,7 @@
apt: apt:
name: apt-listchanges name: apt-listchanges
state: present state: present
update_cache: yes update_cache: true
# Send email when there is something new # Send email when there is something new
- name: Configure apt-listchanges - name: Configure apt-listchanges

View file

@ -5,7 +5,7 @@
apt: apt:
name: "{{ packages }}" name: "{{ packages }}"
state: present state: present
update_cache: yes update_cache: true
vars: vars:
packages: packages:
- bash-completion # for bash users - bash-completion # for bash users

View file

@ -5,7 +5,7 @@
apt: apt:
name: molly-guard name: molly-guard
state: present state: present
update_cache: yes update_cache: true
# Always ask for hostname # Always ask for hostname
- name: Configure molly-guard - name: Configure molly-guard

View file

@ -4,7 +4,7 @@
command: npm run build command: npm run build
args: args:
chdir: /var/local/codimd/codimd chdir: /var/local/codimd/codimd
become: yes become: true
become_user: codimd become_user: codimd
# Reload systemd daemons when a service file changes # Reload systemd daemons when a service file changes

View file

@ -14,7 +14,7 @@
apt: apt:
name: "{{ item }}" name: "{{ item }}"
state: present state: present
update_cache: yes update_cache: true
with_items: with_items:
- git - git
- nodejs - nodejs

View file

@ -12,7 +12,7 @@
# repo: https://github.com/hackmdio/codimd.git # repo: https://github.com/hackmdio/codimd.git
# dest: /var/local/codimd/codimd # dest: /var/local/codimd/codimd
# version: 1.2.1 # version: 1.2.1
# become: yes # become: true
# become_user: codimd # become_user: codimd
# notify: Build front-end for CodiMD # notify: Build front-end for CodiMD
@ -21,7 +21,7 @@
command: bin/setup command: bin/setup
args: args:
chdir: /var/local/codimd/codimd chdir: /var/local/codimd/codimd
become: yes become: true
become_user: codimd become_user: codimd
# Connection to database # Connection to database
@ -38,7 +38,7 @@
command: node_modules/.bin/sequelize db:migrate command: node_modules/.bin/sequelize db:migrate
args: args:
chdir: /var/local/codimd/codimd chdir: /var/local/codimd/codimd
become: yes become: true
become_user: codimd become_user: codimd
# Configure # Configure

View file

@ -23,4 +23,4 @@
- name: Install DokuWiki - name: Install DokuWiki
apt: apt:
name: dokuwiki name: dokuwiki
update_cache: yes update_cache: true

View file

@ -14,7 +14,7 @@
apt: apt:
name: "{{ item }}" name: "{{ item }}"
state: present state: present
update_cache: yes update_cache: true
with_items: with_items:
- build-essential - build-essential
- curl - curl

View file

@ -4,7 +4,7 @@
apt: apt:
name: "{{ item }}" name: "{{ item }}"
state: present state: present
update_cache: yes update_cache: true
with_items: with_items:
- nslcd - nslcd
- libnss-ldapd - libnss-ldapd
@ -16,7 +16,7 @@
# apt: # apt:
# name: nscd # name: nscd
# state: present # state: present
# update_cache: yes # update_cache: true
# Configure /etc/nslcd.conf # Configure /etc/nslcd.conf
- name: Configure nslcd LDAP credentials - name: Configure nslcd LDAP credentials

View file

@ -1,4 +1,3 @@
#!/bin/sh #!/bin/sh
# {{ ansible_managed }} # {{ ansible_managed }}
echo "Pour changer votre shell,\nAllez sur l'intranet : {{intranet_url}}" echo "Pour changer votre shell,\nAllez sur l'intranet : {{intranet_url}}"

View file

@ -4,7 +4,7 @@
apt: apt:
name: slapd name: slapd
state: present state: present
update_cache: yes update_cache: true
# What is written after is really not a nice way to install a schema # What is written after is really not a nice way to install a schema
# because the LDAP is being flushed away always... # because the LDAP is being flushed away always...

View file

@ -3,7 +3,7 @@
- name: Install apt-transport-https - name: Install apt-transport-https
apt: apt:
name: apt-transport-https name: apt-transport-https
update_cache: yes update_cache: true
# Add the repository into source list # Add the repository into source list
- name: Configure riot repository - name: Configure riot repository
@ -20,7 +20,7 @@
- name: Install riot-web - name: Install riot-web
apt: apt:
name: riot-web name: riot-web
update_cache: yes update_cache: true
# Install nginx # Install nginx
- name: Install nginx - name: Install nginx

View file

@ -2,7 +2,7 @@
- name: Install matrix-synapse - name: Install matrix-synapse
apt: apt:
name: matrix-synapse name: matrix-synapse
update_cache: yes update_cache: true
default_release: stretch-backports default_release: stretch-backports
- name: Configure matrix-synapse - name: Configure matrix-synapse
@ -23,7 +23,7 @@
- name: Install rest auth provider - name: Install rest auth provider
get_url: get_url:
url: https://raw.githubusercontent.com/kamax-matrix/matrix-synapse-rest-auth/master/rest_auth_provider.py url: "{{ synapse_rest_auth_url }}"
dest: /usr/local/lib/python3.5/dist-packages/rest_auth_provider.py dest: /usr/local/lib/python3.5/dist-packages/rest_auth_provider.py
mode: 0755 mode: 0755
notify: Restart matrix-synapse service notify: Restart matrix-synapse service

View file

@ -3,7 +3,7 @@
- name: Install NGINX server - name: Install NGINX server
apt: apt:
name: nginx name: nginx
update_cache: yes update_cache: true
# Install sites # Install sites
- name: Configure NGINX sites - name: Configure NGINX sites

View file

@ -7,6 +7,5 @@
- name: Upgrade - name: Upgrade
apt: apt:
upgrade: dist upgrade: dist
update_cache: yes update_cache: true
cache_valid_time: 86400 # one day cache_valid_time: 86400 # one day