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

47 lines
1.5 KiB
YAML
Raw Normal View History

2019-05-17 10:50:48 +02:00
---
- name: Create directory for versionscheck
become: true
2021-03-16 20:33:27 +01:00
ansible.builtin.file:
2019-10-22 22:27:44 +02:00
path: '/etc/.ansible-version'
2019-05-17 10:50:48 +02:00
state: directory
mode: 0755
when: submodules_versioncheck|bool
- name: check playbook version
become: true
2021-03-16 20:33:27 +01:00
ansible.builtin.slurp:
2019-10-22 22:27:44 +02:00
src: "/etc/.ansible-version/{{ playbook_version_path }}"
2019-05-17 10:50:48 +02:00
register: playbook_version
when: submodules_versioncheck|bool
2021-03-16 20:33:27 +01:00
ignore_errors: true
failed_when: false
2019-05-17 10:50:48 +02:00
- name: Print remote role version
2021-03-16 20:33:27 +01:00
ansible.builtin.debug:
2019-05-17 10:50:48 +02:00
msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}"
when: submodules_versioncheck|bool
- name: Print locale role version
2021-03-16 20:33:27 +01:00
ansible.builtin.debug:
2019-05-17 10:50:48 +02:00
msg: "Local role version: '{{ playbook_version_number|string }}'."
when: submodules_versioncheck|bool
- name: Check if your version is outdated
2021-03-16 20:33:27 +01:00
ansible.builtin.fail:
2019-05-17 10:50:48 +02:00
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
2019-10-22 22:27:44 +02:00
- name: check if '/etc/ansible-version/' is empty
2021-03-16 20:33:27 +01:00
ansible.builtin.find:
2019-10-22 22:27:44 +02:00
paths: '/etc/ansible-version/'
register: filesFound
2019-05-17 10:50:48 +02:00
- name: write new version to remote disk
become: true
2021-03-16 20:33:27 +01:00
ansible.builtin.copy:
2019-05-17 10:50:48 +02:00
content: "{{ playbook_version_number }}"
2019-10-22 22:27:44 +02:00
dest: "/etc/.ansible-version/{{ playbook_version_path }}"
2021-03-16 20:33:27 +01:00
mode: '0644'
2019-05-17 10:50:48 +02:00
when: submodules_versioncheck|bool