1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_base.git synced 2024-08-16 14:29:50 +02:00

implement version checking

This commit is contained in:
Lilian Roller 2019-05-13 17:38:29 +02:00
parent f14abd2118
commit 56add31e8d
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
3 changed files with 37 additions and 0 deletions

View file

@ -35,3 +35,4 @@ fedora_packages:
- libselinux-python - libselinux-python
upgrade_packages_to_latest_version: false upgrade_packages_to_latest_version: false
submodules_versioncheck: true

View file

@ -1,4 +1,37 @@
--- ---
- name: Create directory for versionscheck
become: true
file:
path: '/etc/ansible-version'
state: directory
mode: 0755
when: submodules_versioncheck
- name: check playbook version
become: true
slurp:
src: "{{ playbook_version_path }}"
register: playbook_version
when: submodules_versioncheck
ignore_errors: yes
- name: Print version
debug:
msg: "Remote playbook version: '{{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}'. Local playbook version: '{{ playbook_version_number|string }}'."
when: submodules_versioncheck
- name: Check if your version is outdated
fail:
msg: "Your current ansible module has the version '{{ playbook_version_number }}' and is outdated. Please update it at least to version '{{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode }}'!"
when:
- playbook_version.content|default("Mgo=")|b64decode|int - 1 >= playbook_version_number|int and submodules_versioncheck
- name: write new version to remote disk
become: true
copy:
content: "{{ playbook_version_number }}"
dest: "{{ playbook_version_path }}"
when: submodules_versioncheck
- name: Install common base packages [Debian] - name: Install common base packages [Debian]
become: yes become: yes

3
vars/main.yml Normal file
View file

@ -0,0 +1,3 @@
---
playbook_version_number: 100
playbook_version_path: '/etc/ansible-version/base-packages_ffbsee_github.version'