summaryrefslogtreecommitdiff
path: root/chef/lib/chef/mixin/command.rb
Commit message (Expand)AuthorAgeFilesLines
* note in the source that run_command is deprecated in favor of shelloutBryan McLellan2012-03-081-0/+1
* remove dead not_if/only_if code from Mixin::CommandDaniel DeLeo2011-11-091-58/+0
* convert execute resource to shell out, add live streamsDaniel DeLeo2011-03-301-0/+1
* [CHEF-1845] test if a git clone exists by looking for the .git dirDaniel DeLeo2010-12-091-1/+1
* [CHEF-1481] include Unix or Windows per ruby platformDaniel DeLeo2010-07-231-27/+17
* [CHEF-1481] Chef::Mixin::Command.popen4 now dispatches to the Windows version onDoug MacEachern2010-07-231-187/+10
* prefer Array to [].flatten where possibleDaniel DeLeo2010-05-011-9/+9
* Allow multiple valid return values for execute resourceTollef Fog Heen2010-05-011-1/+1
* CHEF-1032: Allow for (ugly) output that says where the actual issue is ratherMatthew Kent2010-04-301-1/+3
* Fixing a warning and log debugging for run_commandAdam Jacob2010-03-041-1/+1
* Add support for passing parameters to only_if/not_ifTollef Fog Heen2010-01-081-10/+25
* Whitespace cleanupAdam Jacob2009-12-141-1/+1
* Fixed problem with popen4 where child processes that read from STDIN might ne...Eric Hankins2009-11-241-0/+3
* [CHEF-584] popen4 detects exit for misbehaving appsDan DeLeo2009-10-231-2/+3
* Make sure all Package providers run with the system's locale and not C locale.Diego Algorta2009-10-021-1/+17
* Fix CHEF-293 by defaulting to C locale on every shell commandDiego Algorta2009-10-021-5/+9
* CHEF-526: Chef Deploy supportAJ Christensen2009-09-161-27/+42
* Adding a guard block to check seen_recipes, to ensure that we never run the s...Adam Jacob2009-06-291-0/+1
* When a command fails, correctly display its STDOUT and STDERR output.Hongli Lai (Phusion)2009-06-251-4/+4
* popen4: do not hog 100% CPU if one of the channels closed before the other did.Hongli Lai (Phusion)2009-06-251-1/+4
* Making interval/splay work regardless of deamonizationAdam Jacob2009-04-291-1/+0
* fixed CHEF-216Nuo Yan2009-04-261-0/+5
* Fixing up execute output parsing, adding feature tests for execute_commands, ...Adam Jacob2009-04-211-5/+5
* Fixing Chef::Mixin::Command to respect both the 4k buffer size for STDOUT/STD...Adam Jacob2009-04-211-37/+61
* Merge branch 'master' into mlandauer/chef-177Adam Jacob2009-03-201-4/+4
|\
| * Changed all uses of Chef::Exception to Chef::Exceptions to avoid masking ::Ex...Christopher Brown2009-03-181-4/+4
* | Fix for circumstance where command is not outputting anything for more than o...Matthew Landauer2009-03-131-2/+2
* | Now will receive stdout and stderr messages interleaved in correct orderMatthew Landauer2009-03-121-9/+24
* | CHEF-173: Now logs output of command immediatelyMatthew Landauer2009-03-111-13/+14
* | First step to realtime logs: Adjust logging format so that standard output an...Matthew Landauer2009-03-111-28/+17
* | Fixed small logging bug where the command was not being shown when it should ...Matthew Landauer2009-03-111-3/+3
|/
* Change the gid before you change the uid, silly.Adam Jacob2009-02-101-5/+5
* Fixing not_if and only_if to use run_command with the new ignore_exit value, ...Adam Jacob2009-02-051-18/+22
* Making the error message on a non-ready STDOUT/STDERR more realistic.Adam Jacob2009-01-311-4/+2
* If we are waiting and nonblock, wait is dumbAdam Jacob2009-01-311-2/+2
* Adding a debug line before executing via run_commandAdam Jacob2009-01-311-0/+2
* Fixes CHEF-75, a nasty issue where ill-behaved children would cause Chef to b...Adam Jacob2009-01-311-4/+9
* What if I close them for you?Adam Jacob2009-01-301-0/+2
* Make the wait happen first, then read the IOAdam Jacob2009-01-301-2/+12
* maybe a bit less trappingAdam Jacob2009-01-301-3/+1
* Lets trap cld, eh?Adam Jacob2009-01-301-1/+3
* Adding a Process::WNOHANG to the waitpid2 from popen4Adam Jacob2009-01-301-1/+1
* Using IO.wait and IO.ready? to check on IO streams before we block on them, f...Adam Jacob2009-01-251-21/+12
* Halfway to a fix..Adam Jacob2009-01-241-3/+23
* Adding timeout to run_commandAdam Jacob2009-01-221-13/+17
* We only want to see the output if we actually raise the exception - if it get...Adam Jacob2009-01-141-7/+8
* Opscode, little CAdam Jacob2009-01-091-1/+1
* Updating the chef requires so that you can not need every dependency to run t...Adam Jacob2009-01-061-1/+2
* Making command_stdout and command_stderr not instance variables, since we onl...Adam Jacob2008-12-021-6/+6
* comments for run_command and command debugggingBryan McLellan2008-12-011-2/+30