1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_linux_desktop_setup.git synced 2024-09-14 19:54:51 +02:00
ansible_linux_desktop_setup/roles/openvpn/tasks/versioncheck.yml

45 lines
1.6 KiB
YAML
Raw Permalink Normal View History

2019-05-29 11:01:54 +02:00
---
2023-10-28 23:19:14 +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-29 11:01:54 +02:00
- name: Create directory for versionscheck
become: true
2021-03-17 00:43:57 +01:00
ansible.builtin.file:
path: '/etc/.ansible-version'
2019-05-29 11:01:54 +02:00
state: directory
2023-10-28 23:19:14 +02:00
mode: '0755'
when: submodules_versioncheck | bool
2019-05-29 11:01:54 +02:00
2023-10-28 23:19:14 +02:00
- name: Check playbook version
2019-05-29 11:01:54 +02:00
become: true
2021-03-17 00:43:57 +01:00
ansible.builtin.slurp:
src: "/etc/.ansible-version/{{ playbook_version_path }}"
2019-05-29 11:01:54 +02:00
register: playbook_version
2023-10-28 23:19:14 +02:00
when: submodules_versioncheck | bool
2019-05-29 11:01:54 +02:00
failed_when: false
2023-10-28 23:19:14 +02:00
- name: Print remote role version # noqa: H500
2021-03-17 00:43:57 +01:00
ansible.builtin.debug:
2019-05-29 11:01:54 +02:00
msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}"
2023-10-28 23:19:14 +02:00
when: submodules_versioncheck | bool
2019-05-29 11:01:54 +02:00
2023-10-28 23:19:14 +02:00
- name: Print locale role version # noqa: H500
2021-03-17 00:43:57 +01:00
ansible.builtin.debug:
2023-10-28 23:19:14 +02:00
msg: "Local role version: '{{ playbook_version_number | string }}'."
when: submodules_versioncheck | bool
2019-05-29 11:01:54 +02:00
- name: Check if your version is outdated
2021-03-17 00:43:57 +01:00
ansible.builtin.fail:
2019-05-29 11:01:54 +02:00
msg: "Your ansible module has the version '{{ playbook_version_number }}' and is outdated. You need to update it!"
when:
2023-10-28 23:19:14 +02:00
- playbook_version.content|default("Mgo=")|b64decode|int - 1 >= playbook_version_number|int and submodules_versioncheck | bool
2019-05-29 11:01:54 +02:00
2023-10-28 23:19:14 +02:00
- name: Write new version to remote disk
2019-05-29 11:01:54 +02:00
become: true
2021-03-17 00:43:57 +01:00
ansible.builtin.copy:
2019-05-29 11:01:54 +02:00
content: "{{ playbook_version_number }}"
2021-03-17 00:43:57 +01:00
dest: "/etc/.ansible-version/{{ playbook_version_path }}"
mode: '0644'
2023-10-28 23:19:14 +02:00
when: submodules_versioncheck | bool
tags: skip_ansible_lint_template-instead-of-copy