mirror of
https://github.com/roles-ansible/ansible_role_xrandr_help.git
synced 2024-08-16 10:09:52 +02:00
Implement version controll
This commit is contained in:
parent
28b6a20719
commit
b67b656f90
4 changed files with 51 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
||||||
---
|
---
|
||||||
install_graphical_application: true
|
install_graphical_application: true
|
||||||
install_autorandr_application: true
|
install_autorandr_application: true
|
||||||
|
|
||||||
|
# version check for this playbook
|
||||||
|
submodules_versioncheck: true
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
- name: Include OS Specific vars
|
- name: Include OS Specific vars
|
||||||
include_vars: "{{ ansible_os_family }}.yml"
|
include_vars: "{{ ansible_os_family }}.yml"
|
||||||
|
|
||||||
|
- name: make versionscheck
|
||||||
|
include_tasks: versioncheck.yml
|
||||||
|
when: submodules_versioncheck|bool
|
||||||
|
|
||||||
- name: Install xrandr
|
- name: Install xrandr
|
||||||
become: true
|
become: true
|
||||||
package:
|
package:
|
||||||
|
@ -13,11 +17,11 @@
|
||||||
package:
|
package:
|
||||||
name: "{{ graphical_xrandr_packages }}"
|
name: "{{ graphical_xrandr_packages }}"
|
||||||
state: present
|
state: present
|
||||||
when: install_graphical_application
|
when: install_graphical_application|bool
|
||||||
|
|
||||||
- name: Install autorandr
|
- name: Install autorandr
|
||||||
become: true
|
become: true
|
||||||
package:
|
package:
|
||||||
name: "{{ autorandr }}"
|
name: "{{ autorandr }}"
|
||||||
state: present
|
state: present
|
||||||
when: install_autorandr_application
|
when: install_autorandr_application|bool
|
||||||
|
|
39
tasks/versioncheck.yml
Normal file
39
tasks/versioncheck.yml
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
---
|
||||||
|
- 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: "{{ 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: write new version to remote disk
|
||||||
|
become: true
|
||||||
|
copy:
|
||||||
|
content: "{{ playbook_version_number }}"
|
||||||
|
dest: "{{ playbook_version_path }}"
|
||||||
|
when: submodules_versioncheck|bool
|
3
vars/main.yml
Normal file
3
vars/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
playbook_version_number: 100
|
||||||
|
playbook_version_path: '/etc/ansible-version/role-xrandr_chaos-bodensee_github.com.version'
|
Loading…
Reference in a new issue