1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_packages.git synced 2024-08-16 10:19:51 +02:00
ansible_role_packages/tasks/versioncheck.yml

45 lines
1.7 KiB
YAML
Raw Normal View History

2019-05-22 10:57:06 +02:00
---
2021-05-10 22:46:00 +02:00
# 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
2019-05-22 10:57:06 +02:00
- name: Create directory for versionscheck
become: true
ansible.builtin.file:
2019-11-15 13:38:35 +01:00
path: '/etc/.ansible-version'
2019-05-22 10:57:06 +02:00
state: directory
mode: "0755"
2024-04-27 02:49:52 +02:00
when: packages__submodules_versioncheck | bool
2019-05-22 10:57:06 +02:00
- name: Check playbook version
2019-05-22 10:57:06 +02:00
become: true
ansible.builtin.slurp:
2024-04-27 02:49:52 +02:00
src: "/etc/.ansible-version/{{ packages__playbook_version_path }}"
2019-05-22 10:57:06 +02:00
register: playbook_version
2024-04-27 02:49:52 +02:00
when: packages__submodules_versioncheck | bool
2020-08-10 10:42:47 +02:00
failed_when: false
2019-05-22 10:57:06 +02:00
2023-10-28 00:16:35 +02:00
- name: Print remote role version # noqa: H500
ansible.builtin.debug:
2019-05-22 10:57:06 +02:00
msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}"
2024-04-27 02:49:52 +02:00
when: packages__submodules_versioncheck | bool
2019-05-22 10:57:06 +02:00
2023-10-28 00:16:35 +02:00
- name: Print locale role version # noqa: H500
ansible.builtin.debug:
2024-04-27 02:49:52 +02:00
msg: "Local role version: '{{ packages__playbook_version_number | string }}'."
when: packages__submodules_versioncheck | bool
2019-05-22 10:57:06 +02:00
- name: Check if your version is outdated
ansible.builtin.fail:
2024-04-27 02:49:52 +02:00
msg: "Your ansible module has the version '{{ packages__playbook_version_number }}' and is outdated. You need to update it!"
2019-05-22 10:57:06 +02:00
when:
2024-04-27 02:49:52 +02:00
- playbook_version.content|default("Mgo=")|b64decode|int - 1 >= packages__playbook_version_number|int and packages__submodules_versioncheck | bool
2019-11-15 13:38:35 +01:00
- name: Write new version to remote disk
2019-05-22 10:57:06 +02:00
become: true
ansible.builtin.copy:
2024-04-27 02:49:52 +02:00
content: "{{ packages__playbook_version_number }}"
dest: "/etc/.ansible-version/{{ packages__playbook_version_path }}"
2020-10-26 18:02:09 +01:00
mode: '0644'
2024-04-27 02:49:52 +02:00
when: packages__submodules_versioncheck | bool
tags: skip_ansible_lint_template-instead-of-copy