2014-01-19 14:34:01 +00:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
#^syntax detection
|
|
|
|
site :opscode
|
|
|
|
|
2014-01-21 22:11:25 +00:00
|
|
|
cookbook "apt"
|
|
|
|
cookbook "minitest-handler"
|
2014-01-27 10:13:56 +00:00
|
|
|
cookbook "network_interfaces"
|
2014-01-19 14:34:01 +00:00
|
|
|
|
|
|
|
def own_cookbook(name,opts={})
|
|
|
|
opts = { path: "site-cookbooks/#{name}"}.merge!(opts)
|
|
|
|
cookbook name, opts
|
|
|
|
end
|
|
|
|
|
|
|
|
own_cookbook "dhcp"
|
|
|
|
own_cookbook "bind"
|
|
|
|
own_cookbook "ntp"
|
2014-01-21 22:11:25 +00:00
|
|
|
own_cookbook "main"
|
2014-01-27 10:13:56 +00:00
|
|
|
own_cookbook "lctp-network"
|