Files @ c6e7675e63f9
Branch filter:

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

branko
MAR-23: Implemented initial scaffolding for testing database role:

- Added Molecule configuration.
- Implemented basic playbook for setting-up the two instances used for testing
mandatory parameters and backups.
- Added data necessary for setting-up all roles.
- Updated database_serve role Molecule configuration not to depends on the
Ansible Galaxy.
---

- 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