📅  最后修改于: 2020-11-02 03:25:19             🧑  作者: Mango
Chef中的库提供了一个封装已编译逻辑的地方,从而使菜谱食谱保持整洁。
步骤1-在Cookbook的库中创建一个辅助方法。
vipin@laptop:~/chef-repo $ subl cookbooks/my_cookbook/libraries/ipaddress.rb
class Chef::Recipe
def netmask(ipaddress)
IPAddress(ipaddress).netmask
end
end
步骤2-使用辅助方法。
vipin@laptop:~/chef-repo $ subl cookbooks/my_cookbook/recipes/default.rb
ip = '10.10.0.0/24'
mask = netmask(ip) # here we use the library method
Chef::Log.info("Netmask of #{ip}: #{mask}")
步骤3-将修改后的食谱上传到Chef Server。
vipin@laptop:~/chef-repo $ knife cookbook upload my_cookbook
Uploading my_cookbook [0.1.0]
user@server $ sudo chef-client
...TRUNCATED OUTPUT...
[2013-01-18T14:38:26+00:00] INFO: Netmask of 10.10.0.0/24:
255.255.255.0
...TRUNCATED OUTPUT...
Chef库代码可以打开Chef :: Recipe类,并按照步骤1中的步骤添加新方法。此步骤不是最干净的方法,而是最简单的方法。
class Chef::Recipe
def netmask(ipaddress)
...
end
end
一旦打开cook :: recipe类,就会对其进行污染。作为最佳实践,在库中引入新的子类并将方法定义为类方法始终是更好的方法。这避免了拉扯cook :: recipe命名空间。
vipin@laptop:~/chef-repo $ subl cookbooks/my_cookbook/libraries/ipaddress.rb
class Chef::Recipe::IPAddress
def self.netmask(ipaddress)
IPAddress(ipaddress).netmask
end
end
我们可以在食谱中使用以下方法
IPAddress.netmask(ip)