Initial commit with sources

This commit is contained in:
Sebastien Laithier
2022-08-17 10:12:40 +02:00
parent 216dee6714
commit d6e8f370e9
99 changed files with 26675 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
---
- name: check package version
shell: dpkg -l | awk '$2=="{{ package }}" { print $3 }'
register: package_version_debian
changed_when: false
- name: output
debug: msg="{{ inventory_hostname }};{{ package }};{{ package_version_debian.stdout }}"
when: package_version_debian.stdout != ""