-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPolicyfile.rb
More file actions
27 lines (22 loc) · 734 Bytes
/
Copy pathPolicyfile.rb
File metadata and controls
27 lines (22 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Policyfile.rb - Describe how you want Chef to configure your workstation.
#
# For more information on the Policyfile feature, visit
# https://github.com/opscode/chef-dk/blob/master/POLICYFILE_README.md
name 'pantry'
# Get cookbooks from supermarket.chef.io
default_source :community
## Run List
run_list(
'pantry',
'workstation::mac_os_x',
'workstation::settings',
'workstation::apps'
)
# Add `cookbook` entries for cookbooks that are not found on
# supermarket. See the POLICYFILE_README.md for more information.
cookbook 'workstation', path: 'cookbooks/workstation'
## Attributes
# packages for OS X
default['homebrew']['taps'] = %w()
default['homebrew']['casks'] = %w()
default['homebrew']['formula'] = %w(git)