How to use script resource to substitute variable value [duplicate]

倾然丶 夕夏残阳落幕 提交于 2020-01-06 19:34:25

问题


I am using chef script resource and trying to assign a fingerprint value as below

script 'retrieve_ucp_master_fingerprint' do  
  interpreter "bash"  
  code <<-EOH  
      export FINGERPRINT=D0:19:C5:80:42:66:56:AC:6F  
      docker run --rm -i -v /var/run/docker.sock:/var/run/docker.sock --name ucp docker/ucp join --replica --fingerprint $FINGERPRINT
  EOH  
end    

However, chef is not at all substituting the value of $FINGERPRINT


回答1:


$FINGERPRINT is bash syntax, Chef is not involved. You can use #{} to interpolate Ruby expressions in some kinds of Ruby string literals, but you would have to say where that data is coming from.



来源:https://stackoverflow.com/questions/36877186/how-to-use-script-resource-to-substitute-variable-value

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!