19 lines
349 B
Ruby
19 lines
349 B
Ruby
#!/usr/bin/env ruby
|
|
#^syntax detection
|
|
site :opscode
|
|
|
|
cookbook "apt"
|
|
cookbook "minitest-handler"
|
|
cookbook "network_interfaces"
|
|
|
|
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"
|
|
own_cookbook "main"
|
|
own_cookbook "lctp-network"
|