1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_avahi_client.git synced 2024-07-06 22:39:00 +02:00

Improve linting

This commit is contained in:
L3D 2023-10-28 18:07:34 +02:00
parent 66e34c4881
commit ee33d4bfa3
No known key found for this signature in database
GPG key ID: AD65B920933B4B20
6 changed files with 16 additions and 13 deletions

View file

@ -10,8 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout git repo'
uses: actions/checkout@v4.1.1
- name: Checkout git repo
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0

View file

@ -10,8 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout git repo'
uses: actions/checkout@v4.1.1
- name: Checkout git repo
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0

View file

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout git repo'
- name: Checkout git repo
uses: actions/checkout@v4
with:
submodules: true

View file

@ -1,17 +1,21 @@
---
- name: Run Optional versionscheck
ansible.builtin.include_tasks: versioncheck.yml
ansible.builtin.include_tasks:
file: versioncheck.yml
when: submodules_versioncheck | bool
- name: Gather os specific variables
ansible.builtin.include_vars: "{{ item }}"
ansible.builtin.include_vars:
file: "{{ item }}"
with_first_found:
- "vars/{{ ansible_os_family }}.yml"
- "vars/os_fallback.yml"
- name: Install MDNS requirements
ansible.builtin.include_tasks: install.yml
ansible.builtin.include_tasks:
file: install.yml
- name: Configure /etc/nsswitch.conf
ansible.builtin.include_tasks: nsswitch.yml
ansible.builtin.include_tasks:
file: nsswitch.yml
when: avahi_client__configure_nsswitch | bool

View file

@ -16,15 +16,14 @@
src: "/etc/.ansible-version/{{ playbook_version_path }}"
register: playbook_version
when: submodules_versioncheck | bool
ignore_errors: true
failed_when: false
- name: Print remote role version
- name: Print remote role version # noqa: H500
ansible.builtin.debug:
msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}"
when: submodules_versioncheck | bool
- name: Print locale role version
- name: Print locale role version # noqa: H500
ansible.builtin.debug:
msg: "Local role version: '{{ playbook_version_number | string }}'."
when: submodules_versioncheck | bool

View file

@ -1,3 +1,3 @@
---
playbook_version_number: 9
playbook_version_number: 10
playbook_version_path: 'do1jlr.avahi_client.version'