-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPolicyfile.rb
More file actions
22 lines (17 loc) · 842 Bytes
/
Policyfile.rb
File metadata and controls
22 lines (17 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Policyfile.rb - Describe how you want Chef to build your system.
#
# For more information on the Policyfile feature, visit
# https://docs.chef.io/policyfile.html
# A name that describes what the system you're building with Chef does.
name "test_policy"
# Where to find external cookbooks:
#default_source :supermarket
default_source:chef_repo, "/root/chef-repo/"
# run_list: chef-client will run these recipes in the order specified.
node[node.policy_group]['dengine']['artifact']['version'] = '0.0'
node[node.policy_group]['dengine']['artifact']['rollversion'] = '0.0'
node['dengine']['artifact']['name'] = 'gameoflife-web'
node['dengine']['artifact']['deployment'] = 'false'
run_list "dengine::default"
# Specify a custom source for a single cookbook:
# cookbook "example_cookbook", path: "../cookbooks/example_cookbook"