15 lines
243 B
Plaintext
15 lines
243 B
Plaintext
|
#!/usr/bin/env ruby
|
||
|
#^syntax detection
|
||
|
site :opscode
|
||
|
|
||
|
cookbook 'apt'
|
||
|
|
||
|
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"
|