-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.rb
26 lines (24 loc) · 1.01 KB
/
settings.rb
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
require 'rubygems'
require 'json'
settings = {
"facts" => './system_facts',
"facts_version" => 'git rev-parse HEAD',
"imp" => './imp',
"imp_version" => 'git rev-parse HEAD',
"inventory" => 'public/inventory',
"inventory_server" => 'http://localhost:4567/inventory',
"key_name" => "local",
"keys" => "keys",
"logs" => 'public/logs',
"name_by" => ['hostname'],
"order_resources_by_name" => false,
"resource_name_shuffle_salt" => "",
"passphrase" => 'poppet',
"policy" => 'public/policy',
"policy_makers" => "policy_makers/*",
"policy_server" => 'http://localhost:4567/policy',
"policy_version" => 'git rev-parse HEAD',
"public" => 'public',
"last_known_good" => 'private/last_known_good',
}
puts settings.to_json