mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-08-01 12:24:43 +00:00
roles: Fix ansible-lint name:template warnings
ansible-lint warns if Jinja2 templates are not used as the last item in a task name.
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
|
||||
# INSTALL bind-utils
|
||||
|
||||
- name: Ensure {{ ipasmartcard_server_bindutils_packages }} are installed
|
||||
- name: Ensure bind utilities packages are installed
|
||||
ansible.builtin.package:
|
||||
name: "{{ ipasmartcard_server_bindutils_packages }}"
|
||||
state: present
|
||||
@@ -55,13 +55,13 @@
|
||||
ipaadmin_principal: admin
|
||||
when: ipaadmin_principal is undefined
|
||||
|
||||
- name: Athenticate with kinit and "{{ ipaadmin_principal }}" password
|
||||
- name: Athenticate with kinit and password for "{{ ipaadmin_principal }}"
|
||||
ansible.builtin.command: kinit "{{ ipaadmin_principal }}"
|
||||
args:
|
||||
stdin: "{{ ipaadmin_password }}"
|
||||
when: ipaadmin_password is defined
|
||||
|
||||
- name: Authenticate with kinit and "{{ ipaadmin_principal }}" keytab
|
||||
- name: Authenticate with kinit and keytab for "{{ ipaadmin_principal }}"
|
||||
ansible.builtin.command: kinit -kt "{{ ipaadmin_keytab }}" "{{ ipaadmin_principal }}"
|
||||
when: ipaadmin_keytab is defined
|
||||
|
||||
|
||||
Reference in New Issue
Block a user