From 2b9b1d1c39b08e988af1f9510b6c14c5f152cd85 Mon Sep 17 00:00:00 2001 From: Alexander Dahl <alex@netz39.de> Date: Sun, 9 Mar 2025 18:57:04 +0100 Subject: [PATCH] :rotating_light: host: krypton: Fix fqcn linter warnings fqcn[action-core]: Use FQCN for builtin module actions (file). host-krypton.yml:41 Use `ansible.builtin.file` or `ansible.legacy.file` instead. fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. host-krypton.yml:52 Action `docker_container` is not FQCN. fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. host-krypton.yml:117 Action `docker_container` is not FQCN. fqcn[action-core]: Use FQCN for builtin module actions (include_role). host-krypton.yml:130 Use `ansible.builtin.include_role` or `ansible.legacy.include_role` instead. --- host-krypton.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/host-krypton.yml b/host-krypton.yml index f82daa8..2efdf68 100644 --- a/host-krypton.yml +++ b/host-krypton.yml @@ -33,13 +33,13 @@ tasks: # - name: Setup dehydrated challenge endpoint for {{ openldap_domain }} - # include_role: + # ansible.builtin.include_role: # name: setup-http-dehydrated # vars: # site_name: "{{ openldap_domain }}" - name: Ensure openLDAP directories are present. - file: + ansible.builtin.file: path: "{{ item.path }}" mode: "0755" state: directory @@ -50,7 +50,7 @@ - path: "{{ dehydrated_certs_dir }}/{{ openldap_domain }}" - name: Ensure container for openLDAP is running. - docker_container: + community.docker.docker_container: name: openLDAP image: osixia/openldap:1.5.0 detach: yes @@ -115,7 +115,7 @@ - name: Ensure container for entities validation service is running - docker_container: + community.docker.docker_container: name: entities_validation_svc image: netz39/entities_validation_svc:v1.0.4 pull: true @@ -128,7 +128,7 @@ TZ: "{{ timezone }}" - name: Setup proxy site entities-validation.svc.n39.eu - include_role: + ansible.builtin.include_role: name: setup_http_site_proxy vars: site_name: entities-validation.svc.n39.eu