opennebula 7.0.1 → 7.0.2

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: 1edcccf0b9e0d503d1c4d28cd64205a58eb85d0f0ab6d62d2f7d6c229b27d841
4
- data.tar.gz: 47ee96dcfcb9d7b92243ea88eb6f9630866537539ef7bfc1cd7ea7fc698c28b3
3
+ metadata.gz: f9329bfd26226fc9666ec903ce45a8ef18e312b9652f7c758675a8b2b54276dd
4
+ data.tar.gz: cc3ecc06bd9abf1ff269c8e4ee796bd014fc02a321ff8250f16d0779e6197a53
5
5
  SHA512:
6
- metadata.gz: 3f94e3f828c2e31c71e8bdf12c5dfc6a4d4a72c92c4333f5a71c85fb7a35e8bdb108fd9b5834e8849d79431888c4402cb047ce688371db6c1feeb29368600c6c
7
- data.tar.gz: 1c1969f628aea70d2fc5702fc8103ffd9e9a4fb22a01f46003c32994829acc3e049be89a85a93c635dcc911cdbaf6f10d1ed45743a25e122bf7e8dacbdb88f02
6
+ metadata.gz: 4e9c489d38b4b75e0f3c53b3399dd3d10cdf3084fc41fdfeaca049f4bece06609b9534637df0b95c89516bedf0c790cbd82ff4b92c70888ca4f457aa06e0ed07
7
+ data.tar.gz: bf53e5bcfe945ec91a329af7f57f372590cbb013a62f9cd63708e98dd618de6644722b277a400c1b6efa1a964732d885f05c246ecfaa9fd00d2b121210e0e96a
@@ -51,7 +51,7 @@ end
51
51
  module CloudClient
52
52
 
53
53
  # OpenNebula version
54
- VERSION = '7.0.1'
54
+ VERSION = '7.0.2'
55
55
 
56
56
  # #########################################################################
57
57
  # Default location for the authentication file
@@ -433,12 +433,14 @@ module OpenNebula::MarketPlaceAppExt
433
433
  img_names = imgp.retrieve_elements('/IMAGE_POOL/IMAGE/NAME')
434
434
 
435
435
  opt_name = options[:name]
436
- t_short = "#{opt_name}-#{obj_name}-#{idx}"
436
+ app_name = app if xpath == '//DISK'
437
+ t_short = [opt_name, app_name, obj_name, idx].compact.join('-')
437
438
 
438
439
  if !img_names.nil? && img_names.include?(t_short)
439
440
  idy = 0
440
- while img_names.include? \
441
- "#{opt_name}_#{idy}-#{obj_name}-#{idx}"
441
+ while img_names.include?(
442
+ ["#{opt_name}_#{idy}", app_name, obj_name, idx].compact.join('-')
443
+ )
442
444
  idy += 1
443
445
  end
444
446
  opt_name = "#{opt_name}_#{idy}"
@@ -446,7 +448,7 @@ module OpenNebula::MarketPlaceAppExt
446
448
 
447
449
  rc = obj.export(
448
450
  :dsid => options[:dsid],
449
- :name => "#{opt_name}-#{obj_name}-#{idx}",
451
+ :name => [opt_name, app_name, obj_name, idx].compact.join('-'),
450
452
  :notemplate => options[:notemplate]
451
453
  )
452
454
 
data/lib/opennebula.rb CHANGED
@@ -79,5 +79,5 @@ require 'opennebula/backupjob_pool'
79
79
  module OpenNebula
80
80
 
81
81
  # OpenNebula version
82
- VERSION = '7.0.1'
82
+ VERSION = '7.0.2'
83
83
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opennebula
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.1
4
+ version: 7.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenNebula
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-22 00:00:00.000000000 Z
11
+ date: 2025-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri