ansible-lint fixes

This commit is contained in:
Timo Makinen 2022-10-31 17:06:50 +00:00
parent 3a64f595fe
commit 203d9bea62
17 changed files with 53 additions and 57 deletions

View file

@ -1,11 +1,10 @@
---
- name: install packages
- name: Install packages
ansible.builtin.package:
name: openldap-clients
state: installed
- name: configure ldap client
- name: Create config
ansible.builtin.template:
dest: /etc/openldap/ldap.conf
src: ldap.conf.j2
@ -13,7 +12,7 @@
owner: root
group: "{{ ansible_wheel }}"
- name: authenticate to ldap with host certs when running as root
- name: Authenticate to server with host certs when running as root
ansible.builtin.template:
dest: /root/.ldaprc
src: ldaprc.j2