1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_weechat.git synced 2024-08-16 13:09:48 +02:00
ansible_role_weechat/tasks/versioncheck.yml

46 lines
1.6 KiB
YAML
Raw Normal View History

---
# Copyright (c) 2021 L3D <l3d@c3woc.de>
# this file is released with the MIT license.
# License: https://github.com/roles-ansible/ansible_role_template/blob/main/LICENSE
- name: Create directory for versionscheck
become: true
ansible.builtin.file:
2020-01-15 17:43:22 +01:00
path: '/etc/.ansible-version'
state: directory
mode: 0755
2023-03-01 21:27:09 +01:00
when: submodules_versioncheck | bool
2023-03-01 21:27:09 +01:00
- name: Check playbook version
become: true
ansible.builtin.slurp:
2020-01-15 17:43:22 +01:00
src: "/etc/.ansible-version/{{ playbook_version_path }}"
register: playbook_version
2023-03-01 21:27:09 +01:00
when: submodules_versioncheck | bool
ignore_errors: true
2020-11-06 11:03:21 +01:00
failed_when: false
- name: Print remote role version
ansible.builtin.debug:
msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}"
2023-03-01 21:27:09 +01:00
when: submodules_versioncheck | bool
- name: Print locale role version
ansible.builtin.debug:
2023-03-01 21:27:09 +01:00
msg: "Local role version: '{{ playbook_version_number | string }}'."
when: submodules_versioncheck | bool
- name: Check if your version is outdated
ansible.builtin.fail:
msg: "Your ansible module has the version '{{ playbook_version_number }}' and is outdated. You need to update it!"
when:
2023-03-01 21:27:09 +01:00
- playbook_version.content|default("Mgo=")|b64decode|int - 1 >= playbook_version_number|int and submodules_versioncheck | bool
2020-01-15 17:43:22 +01:00
2023-03-01 21:27:09 +01:00
- name: Write new version to remote disk
become: true
ansible.builtin.copy:
content: "{{ playbook_version_number }}"
2020-01-15 17:43:22 +01:00
dest: "/etc/.ansible-version/{{ playbook_version_path }}"
2020-11-06 11:03:21 +01:00
mode: '0644'
2023-03-01 21:27:09 +01:00
when: submodules_versioncheck | bool
tags: skip_ansible_lint_template-instead-of-copy