1. 01 Oct, 2015 1 commit
  2. 26 Sep, 2015 2 commits
    • task logging revamp · 37a91843
       * allow global no_log setting, no need to set at play or task level, but can be overriden by them
       * allow turning off syslog only on task execution from target host (manage_syslog), overlaps with no_log functionality
       * created log function for task modules to use, now we can remove all syslog references, will use systemd journal if present
       * added debug flag to modules, so they can make it call new log function conditionally
       * added debug logging in module's run_command
      Brian Coca committed
  3. 17 Sep, 2015 1 commit
  4. 15 Sep, 2015 1 commit
  5. 03 Sep, 2015 1 commit
  6. 31 Aug, 2015 1 commit
  7. 15 Aug, 2015 1 commit
    • some fixes to become/sudo · 49eb95e2
       * now it uses -n to get immediate error if no password is supplied and one is needed,
         this should fix the issue with sudo hanging waiting for input.
       * made -k configurable, this can break changing become_users in play if left out,
         but opens up the possiblity of OTP support.
      Brian Coca committed
  8. 22 Jul, 2015 1 commit
  9. 20 Jul, 2015 1 commit
  10. 10 Jul, 2015 1 commit
  11. 06 Jul, 2015 2 commits
  12. 02 Jul, 2015 1 commit
  13. 01 Jul, 2015 1 commit
  14. 30 Jun, 2015 1 commit
  15. 15 May, 2015 2 commits
  16. 10 Mar, 2015 1 commit
    • preliminary privlege escalation unification + pbrun · 5f6db0e1
      - become constants inherit existing sudo/su ones
      - become command line options, marked sudo/su as deprecated and moved sudo/su passwords to runas group
      - changed method signatures as privlege escalation is collapsed to become
      - added tests for su and become, diabled su for lack of support in local.py
      - updated playbook,play and task objects to become
      - added become to runner
      - added whoami test for become/sudo/su
      - added home override dir for plugins
      - removed useless method from ask pass
      - forced become pass to always be string also uses to_bytes
      - fixed fakerunner for tests
      - corrected reference in synchronize action plugin
      - added pfexec (needs testing)
      - removed unused sudo/su in runner init
      - removed deprecated info
      - updated pe tests to allow to run under sudo and not need root
      - normalized become options into a funciton to avoid duplication and inconsistencies
      - pushed suppored list to connection classs property
      - updated all connection plugins to latest 'become' pe
      
      - includes fixes from feedback (including typos)
      - added draft docs
      - stub of become_exe, leaving for future v2 fixes
      Brian Coca committed
  17. 30 Jan, 2015 1 commit
  18. 29 Jan, 2015 1 commit
  19. 19 Jan, 2015 1 commit
  20. 05 Jan, 2015 1 commit
  21. 16 Dec, 2014 2 commits
  22. 14 Dec, 2014 1 commit
  23. 04 Dec, 2014 1 commit
  24. 11 Nov, 2014 1 commit
  25. 04 Nov, 2014 1 commit
  26. 26 Sep, 2014 1 commit
  27. 10 Sep, 2014 1 commit
  28. 09 Sep, 2014 1 commit
  29. 22 Aug, 2014 2 commits
  30. 18 Aug, 2014 1 commit
    • $powershellpath is called as ".$powershellpath" · f0004b16
      $powershell path is set to "C:\powershell" at line 27. This is fine, but on line 82 $powershellpath is called as ".$powershellpath\$filename". Because the path at line 27 is absolute, a period preceding the $powershellpath is not required at 82. It actually causes an error:
      
      Start-Process : This command cannot be executed due to the error: Unknown error (0x80041002).
      At C:\users\Nathan Sosnovske\Documents\ps2to3.ps1:81 char:14
      
      Start-Process <<<< -FilePath ".$powershellpath\$filename" -ArgumentList /quiet
      CategoryInfo : InvalidOperation: (:) [Start-Process], InvalidOperationException
      FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand
      Removing the period on line 82 before $powershellpath fixes this error.
      nathansoz committed
  31. 11 Aug, 2014 1 commit
  32. 06 Aug, 2014 1 commit
  33. 06 Jul, 2014 1 commit
  34. 19 Jun, 2014 2 commits