Files @ 530a5b0abb6d
Branch filter:

Location: majic-ansible-roles/roles/ldap_client/tasks/main.yml

branko
MAR-107: Test implementation for role 'backup_server':

- Implemented common set of tests.
- Implemented tests for role usage where only mandatory parameters are
supplied.
- Implemented tests that are relevant to optional parameters.
- Tests cover full functionality of the backup server.
---

- name: Install OpenLDAP client tools
  apt: name=ldap-utils state=installed

- name: Deploy LDAP client configuration file
  template: src=ldap.conf.j2 dest=/etc/ldap/ldap.conf owner=root group=root mode=644

- name: Explicitly run all handlers
  include: ../handlers/main.yml
  when: "handlers | default(False) | bool() == True"
  tags:
    - handlers