-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBerksfile
More file actions
17 lines (14 loc) · 699 Bytes
/
Copy pathBerksfile
File metadata and controls
17 lines (14 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
source "https://supermarket.chef.io"
cookbook 'debconf', git: 'https://github.com/ophymx/debconf.git'
cookbook 'pleaserun', git: 'https://github.com/mjuarez/chef-pleaserun.git'
cookbook 'plex', git: 'https://github.com/gbagnoli/plex', branch: 'new_release_url'
cookbook 'ruby_rbenv', git: 'https://github.com/gbagnoli/ruby_rbenv', branch: 'ubuntu_20.04'
cookbook 'oauth2_proxy', git: 'https://github.com/gbagnoli/cookbook-oauth2_proxy'
cookbook 'seven_zip', '<=3.2.2'
cbs = Dir.entries('site-cookbooks').select do |e|
dir = File.join('site-cookbooks', e)
File.directory?(dir) && !e.start_with?('.')
end
cbs.each do |cb|
cookbook File.basename(cb), path: File.join('site-cookbooks', cb)
end