18 lines
403 B
YAML
18 lines
403 B
YAML
---
|
|
- name: install ldap-account-management
|
|
yum:
|
|
name:
|
|
./files/lam/ldap-account-manager-8.6-0.fedora.1.noarch.rpm
|
|
state: present
|
|
disable_gpg_check: true
|
|
|
|
- name: copy lam config file
|
|
copy:
|
|
src: "lam/{{ item }}"
|
|
dest: "/var/lib/ldap-account-manager/config/{{ item }}"
|
|
with_items:
|
|
- config.cfg
|
|
- lam.conf
|
|
notify: restart_httpd
|
|
|