Skip to content

Commit

Permalink
update linting
Browse files Browse the repository at this point in the history
  • Loading branch information
DO1JLR committed Mar 12, 2021
1 parent b018fae commit 12d3395
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 80 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
# These are supported funding model platforms

github: [do1jlr]
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/ansible-centos-centos6.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/ansible-linting-chek.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Galaxy release

# yamllint disable-line rule:truthy
# yamllint disable-line rule:truthy
on:
push:
branches: ['main']
Expand Down
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

8 changes: 8 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
extends: default

rules:
# 150 chars should be enough, but don't fail if a line is longer
line-length:
max: 150
level: warning
4 changes: 2 additions & 2 deletions meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
galaxy_info:
author: L3D
author: do1jlr
description: Ansible role to install the Extra Packages for Enterprise Linux (EPEL) - Repository on RHEL/centos
role_name: epel
license: MIT
min_ansible_version: 2.9
github_branch: master
github_branch: main
platforms:
- name: EL
versions:
Expand Down
5 changes: 3 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
- name: combine epel_repo config
set_fact:
epel_repo: "{{ _epel_repo|combine(epel_repo, recursive=True) }}"
epel_repo: "{{ _epel_repo|combine(epel_repo, recursive=true) }}"

- include_tasks: versioncheck.yml
- name: run optional versionscheck
ansible.builtin.include_tasks: versioncheck.yml
when: submodules_versioncheck|bool

- name: import EPEL Repo GPG Key
Expand Down
18 changes: 10 additions & 8 deletions tasks/versioncheck.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
---
- name: Create directory for versionscheck
become: true
file:
ansible.builtin.file:
path: '/etc/.ansible-version'
state: directory
mode: 0755
when: submodules_versioncheck|bool

- name: check playbook version
become: true
slurp:
ansible.builtin.slurp:
src: "/etc/.ansible-version/{{ playbook_version_path }}"
register: playbook_version
when: submodules_versioncheck|bool
ignore_errors: yes
ignore_errors: true
failed_when: false

- name: Print remote role version
debug:
ansible.builtin.debug:
msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}"
when: submodules_versioncheck|bool

- name: Print locale role version
debug:
ansible.builtin.debug:
msg: "Local role version: '{{ playbook_version_number|string }}'."
when: submodules_versioncheck|bool

- name: Check if your version is outdated
fail:
ansible.builtin.fail:
msg: "Your ansible module has the version '{{ playbook_version_number }}' and is outdated. You need to update it!"
when:
- playbook_version.content|default("Mgo=")|b64decode|int - 1 >= playbook_version_number|int and submodules_versioncheck|bool

- name: check if '/etc/ansible-version/' is empty
find:
ansible.builtin.find:
paths: '/etc/ansible-version/'
register: filesFound

- name: write new version to remote disk
become: true
copy:
ansible.builtin.copy:
content: "{{ playbook_version_number }}"
dest: "/etc/.ansible-version/{{ playbook_version_path }}"
mode: '0644'
when: submodules_versioncheck|bool
4 changes: 2 additions & 2 deletions vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
playbook_version_number: 1026 # should be over ninethousand
playbook_version_path: 'role-epel_roles-ansible_github.com.version'
playbook_version_number: 1027 # should be int
playbook_version_path: 'role-epel_roles-ansible_github.com.version'
# epel repo
_epel_repo:
url: "https://dl.fedoraproject.org/pub/epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm"
Expand Down

0 comments on commit 12d3395

Please sign in to comment.