fog-azure-rm 0.4.3 → 0.4.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
  SHA256:
3
- metadata.gz: 58bc4e9c11864f922ab1714a0fe2b86ec38a13de4c89462600168cff315704db
4
- data.tar.gz: b7a07536a11d4959fcad7c0d27c9395500a05a95ea5c7112066ba612221f31dd
3
+ metadata.gz: 92ccf9146fde992f1f6571b2eebd2c81c8cbb78a1318f4458afc0328746537ea
4
+ data.tar.gz: f644c667506974a7baef2e6ebd9e2d142f8af58ad5e6a432f2f66d88e363cf6f
5
5
  SHA512:
6
- metadata.gz: b5026003c03125cf94f3653d6a0305a669109a18dd3ab274664e43195a9b0ae3b7e30249c10bed61cfcfedb2e50b6a7d3e5ae0f96a635faf777a451d984f24f1
7
- data.tar.gz: 67cc8a80a8bebf498c3713a22e2d987141a98cbe728947a5fa8e689984e0ff946ffdccf8bd915e8ab3115150c6a09f435b0a747841f9118192548918d1f60086
6
+ metadata.gz: c2a2d73cf128156c1a307688ec9c67426be08265d98a68f58b3ae677eddba8af0f3514d7858d08cb877e6b02001d527b84ff7998233b15f2acf20b164f862b39
7
+ data.tar.gz: 32fbf587491b632a4d513629936b3d1af2786b072c3a439b3a42039f4dcdbf0acf87c3dfbadedd5c23da9b6b8ec8c61518f9ada29e3c0211edb612432d2573dc
@@ -1,3 +1,8 @@
1
+ ## 0.4.4
2
+
3
+ **Fixed:**
4
+ - Compute Service - Fixed customData Update Issue
5
+
1
6
  ## 0.4.3
2
7
 
3
8
  **Fixed:**
@@ -74,7 +74,7 @@ module Fog
74
74
  vm_name = vm_config[:name]
75
75
  username = vm_config[:username]
76
76
  password = vm_config[:password]
77
- custom_data = vm_config[:custom_data]
77
+ custom_data = vm_config[:custom_data] unless vm_config[:custom_data].nil?
78
78
  provision_vm_agent = vm_config[:provision_vm_agent]
79
79
  enable_automatic_updates = vm_config[:enable_automatic_updates]
80
80
  disable_password_auth = vm_config[:disable_password_authentication]
@@ -86,7 +86,7 @@ module Fog
86
86
  os_profile.computer_name = vm_name
87
87
  os_profile.admin_username = username
88
88
  os_profile.admin_password = password
89
- os_profile.custom_data = Base64.strict_encode64(custom_data.nil? ? WHITE_SPACE : custom_data)
89
+ os_profile.custom_data = Base64.strict_encode64(custom_data) unless vm_config[:custom_data].nil?
90
90
 
91
91
  if platform.casecmp(WINDOWS).zero?
92
92
  os_profile.windows_configuration = get_windows_config(provision_vm_agent, enable_automatic_updates)
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module AzureRM
3
- VERSION = '0.4.3'.freeze
3
+ VERSION = '0.4.4'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-azure-rm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shaffan Chaudhry