@H_
502_0@
在部署chef-solo设置时,您需要在使用sudo之间切换,例如:
bash install.sh
和
sudo bash install.sh
取决于主机服务器上的发行版.如何自动化?
ohai已经填充了这些
属性,并且可以在您的食谱中随时使用
例如,
"platform": "centos","platform_version": "6.4","platform_family": "rhel",
你可以参考这些
if node[:platform_family].include?("rhel")
...
end
要查看ohai设置的其他属性,请输入
ohai
在命令行上.