大厨开发的新手:),属性中的变量值似乎在ruby块中不可见。
installer = node['jdk']['installer']
ruby_block "tar-folder-name" do
block do
command = 'tar -tvf /tmp/#{installer}.tar.gz | head -1 | awk \'{print $NF}\''
command_out = shell_out(command)
node.default['tar_folder'] = command_out.stdout
end
action :run
end
当我对变量值进行硬编码时,它会起作用:
command = 'tar -tvf /tmp/jdk-7u85-linux-x64.tar.gz | head -1 | awk \'{print $NF}\''
如何在ruby_block中使用节点属性? 此外,如何使用ruby块外的ruby块中的变量值?有关信息,当我尝试使用node.tar_folder时,它没有在ruby块中提取的值。
提前致谢。
答案 0 :(得分:0)
你需要双引号。 Ruby中的单引号不支持#{foo}
插值语法。