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

Implement version management for this role

This commit is contained in:
Lilian Roller 2019-05-29 11:08:34 +02:00
parent b60f35b06e
commit d5a6b250be
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
4 changed files with 13 additions and 1 deletions

4
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1,4 @@
# These are supported funding model platforms
github: [do1jlr]
custom: https://paypal.me/c3woc

View file

@ -1,3 +1,5 @@
---
# Do we want a password manager installed?
install_pass_as_password_manager: false
# version check for this role?
submodules_versioncheck: true

View file

@ -1,4 +1,7 @@
---
- include_tasks: versioncheck.yml
when: submodules_versioncheck|bool
- name: Include OS Specific vars
include_vars: "{{ ansible_distribution }}.yml"
@ -25,4 +28,4 @@
package:
name: "{{ password_manager_packages }}"
state: present
when: install_pass_as_password_manager
when: install_pass_as_password_manager|bool

3
vars/main.yml Normal file
View file

@ -0,0 +1,3 @@
---
playbook_version_number: 9000 # should be over ninethousand
playbook_version_path: '/etc/ansible-version/role-firefox_simple_chaos-bodensee_github.com.version'