vagrant-dotvm 0.28.0 → 0.29.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6a2527750a2f973f4ac0c9b9b75d5e7a3cfcb5d4
4
- data.tar.gz: 88c5a6389f2a8620b3aed92e5715e3f798441126
3
+ metadata.gz: e164970c2222cd429e2d409fcc66b89fad715086
4
+ data.tar.gz: 27f603a71659096bd0e5fca0c413c21b6dcd2efd
5
5
  SHA512:
6
- metadata.gz: 1d3a052f27a46c1ef196e1f4f6a1d51fb26b5153397ee55e7512c85ca0c6b94b38ac80682882970019a327657ae1af589a1f5a3e69dac203a1e90a92b874db1e
7
- data.tar.gz: 488a44ccad456ec6622b057ce6ef87d8b52ef1123a4dee3e64466c94f68046dd3b4e9b4045c4b64bc01051856644d0a5bc02c7b4e86f071947441967a4839962
6
+ metadata.gz: 4f4d261953cfd446cdf19cc07617c1edadd73978be8e41d218b5cc1bbe7c354a8e017fa38face496dce16a9522321d0f7975eea45bd93f3bfe2f837dd857d3b9
7
+ data.tar.gz: c2d566546048daf91b47a6161f078f7ab298ea7fa8e0738db614360759ceccd68a70c246d4ec5afa3377bb6d35402aa745f691009bea418a9fdac1ff04c1ad0a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # 0.29.0
2
+ * Chef provision
3
+
1
4
  # 0.28.0
2
5
  * Ansible provision
3
6
 
@@ -33,7 +33,6 @@ module VagrantPlugins
33
33
  attr_accessor :puppet_node
34
34
  attr_accessor :puppet_server
35
35
  attr_accessor :minion_config
36
- attr_accessor :run_highstate
37
36
  attr_accessor :install_master
38
37
  attr_accessor :no_minion
39
38
  attr_accessor :install_syndic
@@ -70,7 +69,6 @@ module VagrantPlugins
70
69
  attr_accessor :policy_server_address
71
70
  attr_accessor :repo_gpg_key_url
72
71
  attr_accessor :run_file
73
- attr_accessor :upload_path
74
72
  attr_accessor :yum_repo_file
75
73
  attr_accessor :yum_repo_url
76
74
  attr_accessor :package_name
@@ -91,6 +89,38 @@ module VagrantPlugins
91
89
  attr_accessor :raw_arguments
92
90
  attr_accessor :raw_ssh_args
93
91
  attr_accessor :host_key_checking
92
+ attr_accessor :cookbooks_path
93
+ attr_accessor :data_bags_path
94
+ attr_accessor :environments_path
95
+ attr_accessor :recipe_url
96
+ attr_accessor :roles_path
97
+ attr_accessor :binary_env
98
+ attr_accessor :installer_download_path
99
+ attr_accessor :prerelease
100
+ attr_accessor :arguments
101
+ attr_accessor :attempts
102
+ attr_accessor :custom_config_path
103
+ attr_accessor :encrypted_data_bag_secret_key_path
104
+ attr_accessor :formatter
105
+ attr_accessor :http_proxy
106
+ attr_accessor :http_proxy_user
107
+ attr_accessor :http_proxy_pass
108
+ attr_accessor :no_proxy
109
+ attr_accessor :json
110
+ attr_accessor :node_name
111
+ attr_accessor :provisioning_path
112
+ attr_accessor :run_list
113
+ attr_accessor :file_cache_path
114
+ attr_accessor :file_backup_path
115
+ attr_accessor :verbose_logging
116
+ attr_accessor :enable_reporting
117
+ attr_accessor :client_key_path
118
+ attr_accessor :validation_client_name
119
+ attr_accessor :delete_node
120
+ attr_accessor :delete_client
121
+ attr_accessor :recipe
122
+ attr_accessor :recipes # chef
123
+ attr_accessor :roles # chef
94
124
  end
95
125
  end
96
126
  end
@@ -95,10 +95,24 @@ module VagrantPlugins
95
95
  :yum_repo_url, :package_name, :groups, :inventory_path, :playbook, :extra_vars,
96
96
  :sudo, :sudo_user, :ask_sudo_pass, :ask_vault_pass, :vault_password_file, :limit,
97
97
  :verbose, :tags, :skip_tags, :start_at_task, :raw_arguments, :raw_ssh_args, :host_key_checking,
98
+ :cookbooks_path, :data_bags_path, :environments_path, :recipe_url, :roles_path, :binary_env,
99
+ :installer_download_path, :prerelease, :arguments, :attempts, :custom_config_path,
100
+ :encrypted_data_bag_secret_key_path, :formatter, :http_proxy, :http_proxy_user,
101
+ :http_proxy_pass, :no_proxy, :json, :node_name, :provisioning_path, :run_list,
102
+ :file_cache_path, :file_backup_path, :verbose_logging, :enable_reporting,
103
+ :client_key_path, :validation_client_name, :delete_node, :delete_client, :recipe,
98
104
  ].each do |opt|
99
105
  val = provision.send(opt)
100
106
  p.send("#{opt}=", val) unless val.nil?
101
107
  end
108
+
109
+ provision.recipes.to_a.each do |recipe|
110
+ p.add_recipe(recipe)
111
+ end
112
+
113
+ provision.roles.to_a.each do |role|
114
+ p.add_role(role)
115
+ end
102
116
  end
103
117
  end
104
118
 
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Dotvm
3
- VERSION = "0.28.0"
3
+ VERSION = "0.29.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-dotvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krzysztof Magosa