wombat-cli 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a31b51e543bf957a78352c7812333de0a1dc560
4
- data.tar.gz: 9ea1a19a00983ffc5c42b1c4a6091a2374a69353
3
+ metadata.gz: eb1dde9cdeddd5be9adf57151011076989314185
4
+ data.tar.gz: 4e978f5f7614cf027d1253a8dca6af5a19718f9b
5
5
  SHA512:
6
- metadata.gz: 55d7247a3785f34226d2e81d011468c49497166885e8742fa7aff86f1754cbd4854e5d1997afda5ffb56eb1f54ace77b41b2a56adffec247cf52e9dd71a587aa
7
- data.tar.gz: b4e612803c689385ddadfe040983ab1ada4871a91cb34fef4247958c20ee631a7fb5e4db361389ead00ff4eba224e680a08de574f0004366c502f216fbc145a8
6
+ metadata.gz: f15e12d70edf2f52397b24a7d4d569fb8d8f49128df723d01681cbcc540a14852b19a3e60485ef6aa68b14f9111f403c11132760be0e36b27041c4605e4ea20c
7
+ data.tar.gz: a75640c06a484a88fb1f4b150d30c6d8d90d8f8df8d9b51d13edbfbc34dab03c7efb27e6303f9be4a2ea758bcd38010198d0cbc7b62c0f97cadf548977d82b63
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.3.4](https://github.com/chef-cft/wombat/tree/v0.3.4) (2016-12-07)
4
+ [Full Changelog](https://github.com/chef-cft/wombat/compare/v0.3.3...v0.3.4)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Cmder workaround workstation build [\#257](https://github.com/chef-cft/wombat/pull/257) ([andrewelizondo](https://github.com/andrewelizondo))
9
+ - Configure compliance profile asset store for chef-server [\#256](https://github.com/chef-cft/wombat/pull/256) ([andrewelizondo](https://github.com/andrewelizondo))
10
+
11
+
3
12
  ## [v0.3.3](https://github.com/chef-cft/wombat/tree/v0.3.3) (2016-11-15)
4
13
  [Full Changelog](https://github.com/chef-cft/wombat/compare/v0.3.2...v0.3.3)
5
14
 
@@ -3,3 +3,4 @@ delivery['chef_username'] = "automate"
3
3
  delivery['chef_private_key'] = "/etc/delivery/automate.pem"
4
4
  delivery['chef_server'] = "<%= @chef_server_url %>"
5
5
  insights['enable'] = true
6
+ compliance_profiles['enable'] = true
@@ -41,7 +41,12 @@ end
41
41
 
42
42
  chef_ingredient 'chef-server' do
43
43
  action :reconfigure
44
- config "api_fqdn 'chef.#{node['demo']['domain']}'"
44
+ config <<-EOH
45
+ api_fqdn 'chef.#{node['demo']['domain']}'
46
+ data_collector['root_url'] = 'https://#{node['demo']['domain_prefix']}automate.#{node['demo']['domain']}/data-collector/v0/'
47
+ data_collector['token'] = "#{node['demo']['data_collector_token']}"
48
+ profiles["root_url"] = "https://#{node['demo']['domain_prefix']}automate.#{node['demo']['domain']}"
49
+ EOH
45
50
  end
46
51
 
47
52
  if node['platform'] == 'centos'
@@ -28,7 +28,6 @@ default['demo']['chef_server_url'] = "https://#{node['demo']['chef_fqdn']}/organ
28
28
  default['demo']['compliance_fqdn'] = "#{node['demo']['domain_prefix']}compliance.#{node['demo']['domain']}"
29
29
 
30
30
  default['demo']['pkgs'] = %w(
31
- cmder
32
31
  googlechrome
33
32
  atom
34
33
  git
@@ -37,6 +36,8 @@ default['demo']['pkgs'] = %w(
37
36
  git-credential-manager-for-windows
38
37
  )
39
38
 
39
+ default['demo']['data_collector_token'] = '93a49a4f2482c64126f7b6015e6b0f30284287ee4054ff8807fb63d9cbd1c506'
40
+
40
41
  default['demo']['tutorial_url'] = 'https://learn.chef.io/tutorials/#chef-automate'
41
42
 
42
43
  default['demo']['users'] = {
@@ -4,7 +4,7 @@ maintainer_email 'you@example.com'
4
4
  license 'all_rights'
5
5
  description 'Installs/Configures wombat'
6
6
  long_description 'Installs/Configures wombat'
7
- version '0.2.0'
7
+ version '0.2.1'
8
8
 
9
9
  depends 'hostsfile'
10
10
  depends 'apt'
@@ -4,7 +4,7 @@ maintainer_email 'cheeseplus@chef.io'
4
4
  license 'Apache 2.0'
5
5
  description 'Configures a Windows workstation'
6
6
  long_description 'Configures a Windows workstation'
7
- version '0.2.3'
7
+ version '0.2.4'
8
8
  supports 'windows'
9
9
 
10
10
  depends 'chocolatey'
@@ -6,6 +6,10 @@ node['demo']['pkgs'].each do |pkg|
6
6
  end
7
7
  end
8
8
 
9
+ chocolatey 'cmder' do
10
+ version '1.3.0'
11
+ end
12
+
9
13
  include_recipe 'workstation::certs-keys'
10
14
  include_recipe 'workstation::terminal'
11
15
  include_recipe 'workstation::browser'
@@ -1,3 +1,3 @@
1
1
  module Wombat
2
- VERSION = "0.3.3"
2
+ VERSION = "0.3.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wombat-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andre Elizondo
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-11-15 00:00:00.000000000 Z
12
+ date: 2016-12-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake