From 9b42e51137044f90f5fa2b28be9314109d4d39b5 Mon Sep 17 00:00:00 2001 From: Laur Ivan Date: Sat, 29 Apr 2023 16:22:31 +0200 Subject: [PATCH] chore: Fix molecule lint errors. --- tasks/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/config.yml b/tasks/config.yml index a2db596..297007a 100644 --- a/tasks/config.yml +++ b/tasks/config.yml @@ -23,7 +23,7 @@ - sonarqube_configure - name: "SONARQUBE | Set up nofiles and nproc for ansible user" - pam_limits: + community.general.pam_limits: domain: "*" limit_type: "{{ item.limit_type }}" limit_item: "{{ item.limit_item }}" @@ -36,7 +36,7 @@ become: true - name: "SONARQUBE | Set up the max files" - sysctl: + ansible.posix.sysctl: name: fs.file-max value: "{{ sonarqube_fs_file_max }}" state: present @@ -44,7 +44,7 @@ become: true - name: "SONARQUBE | Set up the VM max_map_count" - sysctl: + ansible.posix.sysctl: name: vm.max_map_count value: "{{ sonarqube_vm_max_map_count }}" state: present