🚨 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.
This commit is contained in:
parent
fcd3b9c87b
commit
2b9b1d1c39
1 changed files with 5 additions and 5 deletions
|
@ -33,13 +33,13 @@
|
||||||
tasks:
|
tasks:
|
||||||
|
|
||||||
# - name: Setup dehydrated challenge endpoint for {{ openldap_domain }}
|
# - name: Setup dehydrated challenge endpoint for {{ openldap_domain }}
|
||||||
# include_role:
|
# ansible.builtin.include_role:
|
||||||
# name: setup-http-dehydrated
|
# name: setup-http-dehydrated
|
||||||
# vars:
|
# vars:
|
||||||
# site_name: "{{ openldap_domain }}"
|
# site_name: "{{ openldap_domain }}"
|
||||||
|
|
||||||
- name: Ensure openLDAP directories are present.
|
- name: Ensure openLDAP directories are present.
|
||||||
file:
|
ansible.builtin.file:
|
||||||
path: "{{ item.path }}"
|
path: "{{ item.path }}"
|
||||||
mode: "0755"
|
mode: "0755"
|
||||||
state: directory
|
state: directory
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
- path: "{{ dehydrated_certs_dir }}/{{ openldap_domain }}"
|
- path: "{{ dehydrated_certs_dir }}/{{ openldap_domain }}"
|
||||||
|
|
||||||
- name: Ensure container for openLDAP is running.
|
- name: Ensure container for openLDAP is running.
|
||||||
docker_container:
|
community.docker.docker_container:
|
||||||
name: openLDAP
|
name: openLDAP
|
||||||
image: osixia/openldap:1.5.0
|
image: osixia/openldap:1.5.0
|
||||||
detach: yes
|
detach: yes
|
||||||
|
@ -115,7 +115,7 @@
|
||||||
|
|
||||||
|
|
||||||
- name: Ensure container for entities validation service is running
|
- name: Ensure container for entities validation service is running
|
||||||
docker_container:
|
community.docker.docker_container:
|
||||||
name: entities_validation_svc
|
name: entities_validation_svc
|
||||||
image: netz39/entities_validation_svc:v1.0.4
|
image: netz39/entities_validation_svc:v1.0.4
|
||||||
pull: true
|
pull: true
|
||||||
|
@ -128,7 +128,7 @@
|
||||||
TZ: "{{ timezone }}"
|
TZ: "{{ timezone }}"
|
||||||
|
|
||||||
- name: Setup proxy site entities-validation.svc.n39.eu
|
- name: Setup proxy site entities-validation.svc.n39.eu
|
||||||
include_role:
|
ansible.builtin.include_role:
|
||||||
name: setup_http_site_proxy
|
name: setup_http_site_proxy
|
||||||
vars:
|
vars:
|
||||||
site_name: entities-validation.svc.n39.eu
|
site_name: entities-validation.svc.n39.eu
|
||||||
|
|
Loading…
Add table
Reference in a new issue