Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • v1.14.7
  • v1.14.6
  • v1.14.5
  • v1.14.4
  • v1.14.3
  • v1.14.2
  • v1.14.1
  • v1.14.0
  • v1.13.2
  • v1.13.1
  • v1.13.0
  • v1.12.1
  • v1.12.0
  • v1.11.1
  • v1.11.0
  • v1.10.0
  • v1.9.2
  • v1.9.1
  • v1.9.0
  • v1.8.4
21 results

README-host.md

Blame
    • Thomas Woerner's avatar
      3f3e495a
      ipahost: Make return value depending on hosts parameter · 3f3e495a
      Thomas Woerner authored
      The way how randompasswords are returned by the ipahost module depends
      so far on the number of hosts that are handled by the module.
      
      This is unexpected if for example a json file is provided with the hosts
      parameter. As it might be unknown how many hosts are in the json file,
      this behaviour is unexpected. The return should not vary in this case.
      
      This chamge makes the return simply depend on the use of the hosts
      paramater. As soon as this parameter is used, the return will always be:
      
      "host": { "<the host>": { "randompassword": "<the host random password>" } }
      
      In the simply case with one host it will be still
      
      "host": { "randompassword": "<the host random password>" }
      
      This change for ipahost is related to the ipauser PR #1053.
      3f3e495a
      History
      ipahost: Make return value depending on hosts parameter
      Thomas Woerner authored
      The way how randompasswords are returned by the ipahost module depends
      so far on the number of hosts that are handled by the module.
      
      This is unexpected if for example a json file is provided with the hosts
      parameter. As it might be unknown how many hosts are in the json file,
      this behaviour is unexpected. The return should not vary in this case.
      
      This chamge makes the return simply depend on the use of the hosts
      paramater. As soon as this parameter is used, the return will always be:
      
      "host": { "<the host>": { "randompassword": "<the host random password>" } }
      
      In the simply case with one host it will be still
      
      "host": { "randompassword": "<the host random password>" }
      
      This change for ipahost is related to the ipauser PR #1053.