mirror of
https://github.com/roles-ansible/ansible_role_goaccess.git
synced 2024-08-16 18:09:23 +02:00
Change order: first gpg, then repo
This commit is contained in:
parent
31565e7f1c
commit
7563e38334
3 changed files with 6 additions and 23 deletions
16
.github/workflows/ansible-ubuntu-trusty.yml
vendored
16
.github/workflows/ansible-ubuntu-trusty.yml
vendored
|
@ -1,16 +0,0 @@
|
|||
name: Ansible check ubuntu:trusty
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: ansible check with ubuntu:trusty
|
||||
uses: roles-ansible/check-ansible-ubuntu-trusty-action@master
|
||||
with:
|
||||
targets: "./"
|
|
@ -20,4 +20,3 @@ If you want to find out more about our tests, please have a look at the github m
|
|||
| | |
|
||||
| [![Ansible check ubuntu:latest](https://github.com/roles-ansible/ansible_role_goaccess/workflows/Ansible%20check%20ubuntu:latest/badge.svg)](https://github.com/roles-ansible/ansible_role_goaccess/actions?query=workflow%3A%22Ansible+check+ubuntu%3Alatest%22) | [ansible test with ubuntu latest](https://github.com/marketplace/actions/check-ansible-ubuntu-latest) |
|
||||
| [![Ansible check ubuntu:bionic](https://github.com/roles-ansible/ansible_role_goaccess/workflows/Ansible%20check%20ubuntu:bionic/badge.svg)](https://github.com/roles-ansible/ansible_role_goaccess/actions?query=workflow%3A%22Ansible+check+ubuntu%3Abionic%22) | [ansible test with ubuntu bionic](https://github.com/marketplace/actions/check-ansible-ubuntu-bionic) |
|
||||
| [![Ansible check ubuntu:trusty](https://github.com/roles-ansible/ansible_role_goaccess/workflows/Ansible%20check%20ubuntu:trusty/badge.svg)](https://github.com/roles-ansible/ansible_role_goaccess/actions?query=workflow%3A%22Ansible+check+ubuntu%3Atrusty%22) | [ansible test with ubuntu trusty](https://github.com/marketplace/actions/check-ansible-ubuntu-trusty) |
|
||||
|
|
|
@ -6,6 +6,12 @@
|
|||
state: "{{ goaccess__state }}"
|
||||
update_cache: yes
|
||||
|
||||
- name: add goaccess apt_key
|
||||
become: true
|
||||
apt_key:
|
||||
url: https://deb.goaccess.io/gnugpg.key
|
||||
state: present
|
||||
|
||||
- name: add goaccess apt_repository
|
||||
become: true
|
||||
apt_repository:
|
||||
|
@ -13,12 +19,6 @@
|
|||
state: present
|
||||
filename: goaccess
|
||||
|
||||
- name: add goaccess apt_key
|
||||
become: true
|
||||
apt_key:
|
||||
url: https://deb.goaccess.io/gnugpg.key
|
||||
state: present
|
||||
|
||||
- name: install goaccess
|
||||
become: true
|
||||
apt:
|
||||
|
|
Loading…
Reference in a new issue