Hi,

I'm seemingly having an issue with the ldap_attr module - it just stops 
processing ldap atrributes. I'm defining multiple dictionaries then adding 
them to a list of lists to process them, e.g:

# VARS
# Define list of attributes to process
ds_ldap_config:
  - "{{ ds_nsslapd_config }}"
  - "{{ ds_ldbm_config }}"
  - "{{ ds_nsslapd_useroot}}"


ds_nsslapd_config:
  dn: 'cn=config'
  attr:
    - { name: nsslapd-accesslog-logging-enabled, value: 'off' }
    - { name: nsslapd-accesslog-logmaxdiskspace, value: 1000 }

ds_ldbm_config:
  dn: 'cn=config,cn=ldbm database,cn=plugins,cn=config'
  attr:
    - { name: nsslapd-dbcachesize, value: 200000000 }

ds_nsslapd_useroot:
  dn: 'cn=userRoot,cn=ldbm database,cn=plugins,cn=config'
  attr:
    - { name: nsslapd-cachememsize, value: 200000000 }




The task looks like this:

- name: Configure LDAP attributes
  ldap_attr:
    dn: "{{ item.0.dn }}"
    name: "{{ item.1.name }}"
    values: "{{ item.1.value }}"
    state: exact
    params: "{{ ldap_auth }}"
  environment: "{{ ds_shell_env }}"
  notify: restart_dirsrv
  with_subelements:
    - "{{ ds_ldap_config | default ([]) }}"
    - attr


The config has many entries. At some point whilst processing the loop it 
just stops. I've tried moving the order of the lists of lists, this just 
changes at what item the loop freezes.
Not really sure how to debug.

-vvvv shows nothing, ANSIBILE_DEBUG doesn't really provide any clues and 
the session has to be interrupted.

Suggestions welcome.


-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/81121b31-90e4-46af-a80b-2642177ae0af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to