mirror of
https://github.com/roles-ansible/ansible_role_ntp.git
synced 2024-08-16 12:59:49 +02:00
start improving role
This commit is contained in:
parent
9c47caa42f
commit
f054469485
3 changed files with 45 additions and 4 deletions
2
.ansible-lint
Normal file
2
.ansible-lint
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
skip_list:
|
||||||
|
- '305'
|
|
@ -1,9 +1,8 @@
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
role_name: ntp
|
role_name: ntp
|
||||||
author: diodonfrost
|
author: L3D
|
||||||
company: diodonfrost
|
description: Ansible role for manage ntp daemon
|
||||||
description: Ansible role for manage ntp daemon on a large number of os
|
license: "Apache"
|
||||||
license: license Apache
|
|
||||||
|
|
||||||
min_ansible_version: 2.7
|
min_ansible_version: 2.7
|
||||||
|
|
||||||
|
@ -71,5 +70,6 @@ galaxy_info:
|
||||||
- system
|
- system
|
||||||
- packaging
|
- packaging
|
||||||
- ntp
|
- ntp
|
||||||
|
- time
|
||||||
|
|
||||||
dependencies: []
|
dependencies: []
|
||||||
|
|
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
|
Loading…
Reference in a new issue