diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 19:01:59 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 19:01:59 +0200 |
commit | f20e3bf3557451047a3ab035de503cd2ce35a550 (patch) | |
tree | aee99bb289cf4ca1a85ac983e8148f2eb1b8d82c /roles/common/tasks | |
parent | my_server: update docker-compose flags (diff) | |
download | maintenance-f20e3bf3557451047a3ab035de503cd2ce35a550.tar.gz maintenance-f20e3bf3557451047a3ab035de503cd2ce35a550.zip |
fix some ansible-lint warnings
Diffstat (limited to 'roles/common/tasks')
-rw-r--r-- | roles/common/tasks/main.yml | 5 | ||||
-rw-r--r-- | roles/common/tasks/tool.yml | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index 558f268..fb0eaed 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -1,4 +1,5 @@ -- include_tasks: tool.yml +- name: Check available tools + ansible.builtin.include_tasks: tool.yml loop: - apt - docker @@ -11,6 +12,6 @@ - name: Check if /etc is versioned become: true - stat: + ansible.builtin.stat: path: /etc/.git/config register: etc_versioned diff --git a/roles/common/tasks/tool.yml b/roles/common/tasks/tool.yml index f8fda64..48d0acc 100644 --- a/roles/common/tasks/tool.yml +++ b/roles/common/tasks/tool.yml @@ -1,8 +1,8 @@ - name: "Check for {{ item }}" - command: "{{ item }} --version" + ansible.builtin.command: "{{ item }} --version" register: cmd_result changed_when: false failed_when: false - name: "Set fact about {{ item }}" - set_fact: "has_{{ item | replace('-', '_') }}={{ cmd_result.rc == 0 }}" + ansible.builtin.set_fact: "has_{{ item | replace('-', '_') }}={{ cmd_result.rc == 0 }}" |