[chef] RE: How to show output of shell script on console?


Chronological Thread 
  • From: "Fouts, Chris" < >
  • To: " " < >
  • Subject: [chef] RE: How to show output of shell script on console?
  • Date: Wed, 27 May 2015 09:51:49 +0000
  • Accept-language: en-US

Thanks, I’ll try this. However, your snippet “looks” like it will output the result of the command “after” the command has been executed? I’m interested in echoing the output as the shell script is executing.

 

Chris

 

From: Fitzwater, Brian K (CTR) [mailto:
Sent: Tuesday, May 26, 2015 5:16 PM
To:
Subject: [chef] RE: How to show output of shell script on console?

 

You could use  Mixlib::ShellOut.

 

https://github.com/chef/mixlib-shellout

 

I use Chef::Log to output to the console, for example:

 

find = Mixlib::ShellOut.new("find . -name '*.rb'")

find.run_command

Chef::Log.info “Find results: #{find.stdout}”

 

--fitz

 

 

From: Fouts, Chris [ ">mailto: ]
Sent: Tuesday, May 26, 2015 4:45 PM
To: ">
Subject: [chef] How to show output of shell script on console?

 

I have a ruby_block that just executes a shell script. How do I get Chef to echo its output to the console? Will using a bash resource do it?

 

Chris




Archive powered by MHonArc 2.6.16.

§