1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_install_firefox.git synced 2024-08-16 12:59:49 +02:00

Update meta

This commit is contained in:
Lilian Roller 2019-05-29 11:05:37 +02:00
parent 56ba740cff
commit b60f35b06e
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
2 changed files with 52 additions and 15 deletions

View file

@ -1,30 +1,27 @@
--- ---
galaxy_info: galaxy_info:
author: L3D author: L3D
description: Install firefox with some plugins and language packs (if available). And if you want, it will install the password manager pass. description: Manage your SSH Server - and deploy a good sshd configuration
license: license (MIT) license: "MIT"
min_ansible_version: 2.2 min_ansible_version: 2.3
github_branch: master github_branch: master
platforms: platforms:
- name: Archlinux - name: Archlinux
versions: all versions: all
- name: Debian - name: Debian
versions: versions:
- all - stretch
- sid
- name: Ubuntu - name: Ubuntu
versions: versions:
- all - bionic
- cosmic
- name: Fedora - name: Fedora
versions: versions:
- all - 28
- name: EL - 29
versions:
- 7
galaxy_tags: galaxy_tags:
- firefox - ssh
- firefoxplugins - sshd
- arch - authorisation
- desktop
- pass
- language
dependencies: [] dependencies: []

40
tasks/versioncheck.yml Normal file
View file

@ -0,0 +1,40 @@
---
- 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
failed_when: false
- 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