Skip to content
  1. Jul 05, 2022
    • Thomas Woerner's avatar
      ipaserver: Use jinja for list concatenation · 0ff119a2
      Thomas Woerner authored
      With ansible-2.13 it is required to use jinja for list concatenation.
      
        list: "[] + ['a'] + ['b']"
      
      needs to become
      
        list: "{{ [] + ['a'] + ['b'] }}"
      
      copy_external_cert.yml needed to be changed.
      0ff119a2
  2. Jun 24, 2022
  3. Jun 23, 2022
  4. Jun 22, 2022
    • Thomas Woerner's avatar
      New roles for smartcard server and client setup · 9932b1dc
      Thomas Woerner authored
      There are new smartcard roles in the roles folder:
      
          roles/ipasmartcard_server
          roles/ipasmartcard_client
      
      This roles allows to setup smartcard for servers and clients.
      
      Here is the documentation for the roles:
      
          roles/ipasmartcard_server/README.md
          roles/ipasmartcard_client/README.md
      
      New example playbooks have been added:
      
          playbooks/install-smartcard-server.yml
          playbooks/install-smartcard-replicas.yml
          playbooks/install-smartcard-servers.yml
          playbooks/install-smartcard-clients.yml
      9932b1dc
  5. Jun 21, 2022
  6. Jun 20, 2022
  7. Jun 17, 2022
  8. Jun 15, 2022
  9. Jun 14, 2022
  10. May 23, 2022
  11. May 12, 2022
  12. Apr 29, 2022
  13. Apr 28, 2022
    • Rafael Guterres Jeffman's avatar
      New idrange management module · 603bd618
      Rafael Guterres Jeffman authored
      There is a new idrange management module placed in the plugins folder:
      
          plugins/modules/ipaidrange.py
      
      The idrange module allows to ensure presence and absence of idranges.
      
      Here is the documentation of the module:
      
          README-idrange.md
      
      New example playbooks have been added:
      
          playbooks/idrange/idrange-absent.yml
          playbooks/idrange/idrange-ad-posix-present.yml
          playbooks/idrange/idrange-ad-present.yml
          playbooks/idrange/idrange-present.yml
      
      New tests for the module can be found at:
      
          tests/idrange/test_idrange.yml
          tests/idrange/test_idrange_client_context.yml
      603bd618
  14. Apr 27, 2022