From 79266d2476efb1ccd1a1e01b2bda42283f1b8f31 Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Thu, 7 Feb 2019 13:04:46 +0100 Subject: [PATCH] Uniformize --- roles/riot/tasks/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/roles/riot/tasks/main.yml b/roles/riot/tasks/main.yml index 3ef264c..7433226 100644 --- a/roles/riot/tasks/main.yml +++ b/roles/riot/tasks/main.yml @@ -1,34 +1,34 @@ --- -# Install transport https -- name: Install transport-https +# Install HTTPS support for APT +- name: Install apt-transport-https apt: name: apt-transport-https update_cache: yes # Add the repository into source list -- name: configure riot repository +- name: Configure riot repository apt_repository: repo: "deb https://riot.im/packages/debian/ {{ ansible_distribution_release }} main" # Add the key -- name: configure the apt key +- name: Configure the apt key apt_key: url: https://riot.im/packages/debian/repo-key.asc id: E019645248E8F4A1 # Install riot -- name: install the riot package +- name: Install riot-web apt: name: riot-web update_cache: yes # Install nginx -- name: install nginx +- name: Install nginx apt: name: nginx # Configure nginx -- name: configure nginx +- name: Configure nginx template: src: nginx-riot.j2 dest: /etc/nginx/sites-available/riot