1. 02 Apr, 2014 2 commits
  2. 28 Mar, 2014 1 commit
  3. 20 Mar, 2014 1 commit
  4. 28 Feb, 2014 1 commit
  5. 29 Jan, 2014 1 commit
  6. 16 Jan, 2014 2 commits
  7. 15 Jan, 2014 1 commit
  8. 02 Dec, 2013 2 commits
  9. 30 Nov, 2013 1 commit
  10. 28 Nov, 2013 2 commits
  11. 26 Nov, 2013 4 commits
  12. 22 Nov, 2013 1 commit
  13. 28 Oct, 2013 1 commit
  14. 25 Oct, 2013 1 commit
  15. 24 Oct, 2013 3 commits
  16. 15 Oct, 2013 3 commits
  17. 11 Oct, 2013 2 commits
  18. 10 Jul, 2013 1 commit
  19. 15 Jun, 2013 1 commit
  20. 07 Jun, 2013 1 commit
  21. 30 May, 2013 1 commit
    • authorized_key: Set manage_dir default value · 8c9cceac
      This commit fixes a bug where the authorized_key module causes
      the ~user/.ssh directory to be owned by root instead of the user,
      when the manage_dir argument is not specified.
      
      If the manage_dir argument was not specified, the module behaved as if
      manage_dir was set to false, even though it's supposed to default to
      true.
      
      This module assumed that an optional argument, with no default
      specified, will not be present in the module.params dictionary.
      
      What actually seems to happen is that the argument does appear in
      the module.params dictionary with a value of None.
      
      The upside is that this line was evaluating to None instead of
      true:
      
          manage_dir = params.get("manage_dir", True)
      
      I fixed the problem in this particular module by explicitly specifying
      the default value for the manage_dir arugment. But if this bug
      occurred because of a change in behavior in AnsibleModule, then other
      modules may be broken as well.
      Lorin Hochstein committed
  22. 07 May, 2013 1 commit
  23. 28 Apr, 2013 1 commit
  24. 27 Apr, 2013 1 commit
  25. 20 Apr, 2013 2 commits
  26. 19 Apr, 2013 2 commits