1. 28 Oct, 2013 1 commit
  2. 25 Oct, 2013 1 commit
  3. 24 Oct, 2013 3 commits
  4. 15 Oct, 2013 3 commits
  5. 11 Oct, 2013 2 commits
  6. 10 Jul, 2013 1 commit
  7. 15 Jun, 2013 1 commit
  8. 07 Jun, 2013 1 commit
  9. 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
  10. 07 May, 2013 1 commit
  11. 28 Apr, 2013 1 commit
  12. 27 Apr, 2013 1 commit
  13. 20 Apr, 2013 2 commits
  14. 19 Apr, 2013 3 commits
  15. 12 Apr, 2013 1 commit
  16. 05 Apr, 2013 2 commits
  17. 26 Mar, 2013 1 commit
  18. 03 Feb, 2013 2 commits
  19. 13 Jan, 2013 1 commit
  20. 14 Dec, 2012 1 commit
    • Ensure files created by authorized_key have correct selinux context · ccca5fcd
      Three changes:
      * Add set_default_selinux_context() to module_common that sets
        a file's context according to the defaults in the policy
      * In atomic_replace(), set the default context for the file if
        selinux is enabled and the destination file does not exist.
      * In authorized_key, set the default context when creating
        $HOME/.ssh and $HOME/.ssh/authorized_keys.  If these already
        exist, this won't touch them.
      Stephen Fromm committed
  21. 27 Nov, 2012 1 commit
  22. 19 Nov, 2012 1 commit
  23. 18 Nov, 2012 1 commit
  24. 08 Nov, 2012 1 commit
  25. 26 Oct, 2012 1 commit
  26. 25 Oct, 2012 3 commits
  27. 23 Oct, 2012 1 commit
  28. 03 Oct, 2012 1 commit