1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_role_websvn.git synced 2024-07-12 20:34:26 +02:00

Add basic Versionscheck

This commit is contained in:
L3D 2020-07-28 12:31:00 +02:00 committed by L3D
parent 3b9c61c8e9
commit 8ed1f8298a
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
3 changed files with 53 additions and 0 deletions

4
defaults/main.yml Normal file
View file

@ -0,0 +1,4 @@
---
# should we do a version check? (recomended)
submodules_versioncheck: false

44
tasks/versioncheck.yml Normal file
View file

@ -0,0 +1,44 @@
---
- name: Create directory for versionscheck
become: true
file:
path: '/etc/.ansible-version'
state: directory
mode: 0755
when: submodules_versioncheck|bool
- name: check playbook version
become: true
slurp:
src: "/etc/.ansible-version/{{ playbook_version_path }}"
register: playbook_version
when: submodules_versioncheck|bool
ignore_errors: yes
- name: Print remote role version
debug:
msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}"
when: submodules_versioncheck|bool
- name: Print locale role version
debug:
msg: "Local role version: '{{ playbook_version_number|string }}'."
when: submodules_versioncheck|bool
- name: Check if your version is outdated
fail:
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
- name: check if '/etc/ansible-version/' is empty
find:
paths: '/etc/ansible-version/'
register: filesFound
- name: write new version to remote disk
become: true
copy:
content: "{{ playbook_version_number }}"
dest: "/etc/.ansible-version/{{ playbook_version_path }}"
when: submodules_versioncheck|bool

5
vars/main.yml Normal file
View file

@ -0,0 +1,5 @@
---
# versionscheck
playbook_version_number: 5 # should be over ninethousand
playbook_version_path: 'role-websvn_roles-ansible_github.com.version'