Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get a linux command output to chef attribute

I want to get a command output into a chef attribute. Can some one help me how to set that in execute resource or bash resource.

ruby_block "something" do
    block do
        #tricky way to load this Chef::Mixin::ShellOut utilities
        Chef::Resource::RubyBlock.send(:include, Chef::Mixin::ShellOut)      
        command = 'cat #{fileName}'
        command_out = shell_out(command)
        node.set['my_attribute'] = command_out.stdout
    end
    action :create
end

How to use attributes in the above code..

like image 921
SASI Avatar asked Apr 18 '15 19:04

SASI


1 Answers

The answer to your question is pretty mich given in How can I put the output of a Chef 'execute resource' into a variable. With tiny modification, if I understand the question right, your problem can be solved like this:

ruby_block "something" do
    block do
        #tricky way to load this Chef::Mixin::ShellOut utilities
        Chef::Resource::RubyBlock.send(:include, Chef::Mixin::ShellOut)      
        command = 'cat /etc/hostname'
        command_out = shell_out(command)
        node.set['my_attribute'] = command_out.stdout
    end
    action :create
end

Replace the content of command with the command that you want to run and my_attribute with the attribute that you want to set.

like image 81
StephenKing Avatar answered Sep 24 '22 23:09

StephenKing