From a37febde0a198ecf89b91b4e2cf7094ead156f28 Mon Sep 17 00:00:00 2001 From: L3D Date: Mon, 31 Jan 2022 18:57:54 +0100 Subject: [PATCH] increase check --- tasks/versioncheck.yml | 24 ++++++++++++------------ vars/main.yml | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/tasks/versioncheck.yml b/tasks/versioncheck.yml index 9895582..5128cc8 100644 --- a/tasks/versioncheck.yml +++ b/tasks/versioncheck.yml @@ -1,7 +1,10 @@ --- +# Copyright (c) 2021 L3D +# this file is released with the MIT license. +# License: https://github.com/roles-ansible/ansible_role_template/blob/main/LICENSE - name: Create directory for versionscheck become: true - file: + ansible.builtin.file: path: '/etc/.ansible-version' state: directory mode: 0755 @@ -9,36 +12,33 @@ - name: check playbook version become: true - slurp: + ansible.builtin.slurp: src: "/etc/.ansible-version/{{ playbook_version_path }}" register: playbook_version when: submodules_versioncheck|bool - ignore_errors: yes + ignore_errors: true + failed_when: false - name: Print remote role version - debug: + ansible.builtin.debug: msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}" when: submodules_versioncheck|bool - name: Print locale role version - debug: + ansible.builtin.debug: msg: "Local role version: '{{ playbook_version_number|string }}'." when: submodules_versioncheck|bool - name: Check if your version is outdated - fail: + ansible.builtin.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: + ansible.builtin.copy: content: "{{ playbook_version_number }}" dest: "/etc/.ansible-version/{{ playbook_version_path }}" + mode: '0644' when: submodules_versioncheck|bool diff --git a/vars/main.yml b/vars/main.yml index b4a34ce..66095b6 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -17,5 +17,5 @@ _postgresql_backup: databases: [] # versionscheck -playbook_version_number: 24 # should be int -playbook_version_path: 'role-postgresql-backup_roles-ansible_github.com.version' # unique string +playbook_version_number: 25 # should be int +playbook_version_path: 'role-postgresql-backup_roles-ansible_github.com.version'