fix ansible-lint errors

This commit is contained in:
Sergey Malyuk
2025-12-19 12:09:28 +03:00
parent 6876365108
commit 2ccf6be8b7
10 changed files with 672 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
---
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: "Get 1C version"
register: platform1c_version_installed
changed_when: false
ansible.builtin.command:
cmd: "ls /opt/1cv8/x86_64"
- name: Read 1C version
ansible.builtin.debug:
msg: "{{ platform1c_version_installed.stdout }}"