foreman_discovery 17.0.0 → 17.0.1
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c10e2168999d13dfeaaa1f57007249da014b4fab8ec7159e98b87aeb19c77cc9
|
4
|
+
data.tar.gz: 84f8506b80d84fddfbf29e34a97d7cc1a007d2e7596528ed950c7f7963cc64a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7a35666497e0c0a3545dcc689c546a0d8ae46f2abf2482a1ddb93658d24574c4f6defc11efb9da83db7fed28dc3317c0317a10286b8e09cbc4aa82526703d29
|
7
|
+
data.tar.gz: 1eea37925391c28bb2ec93d4423f5d1178795fe390c71a6e94df9c481935188bb94059a42f6a60007cc7100b2ecc4581f9f764ddaa2bc6d82bf543523098c175
|
@@ -19,7 +19,7 @@ Extra options like --reset-vga can be set via "extra" array.
|
|
19
19
|
-%>
|
20
20
|
<%
|
21
21
|
mac = @host.facts['discovery_bootif']
|
22
|
-
bootif = host_param("hardware_type", "01") + mac.gsub(':', '-') if mac
|
22
|
+
bootif = host_param("hardware_type", "01") + '-' + mac.gsub(':', '-') if mac
|
23
23
|
ip_cidr = @host.facts['discovery_ip_cidr']
|
24
24
|
ip = @host.facts['discovery_ip']
|
25
25
|
mask = @host.facts['discovery_netmask']
|
@@ -29,7 +29,7 @@ Extra options like --reset-vga can be set via "extra" array.
|
|
29
29
|
-%>
|
30
30
|
<%
|
31
31
|
mac = @host.facts['discovery_bootif']
|
32
|
-
bootif = host_param("hardware_type", "01") + mac.gsub(':', '-') if mac
|
32
|
+
bootif = host_param("hardware_type", "01") + '-' + mac.gsub(':', '-') if mac
|
33
33
|
ip_cidr = @host.facts['discovery_ip_cidr']
|
34
34
|
ip = @host.facts['discovery_ip']
|
35
35
|
mask = @host.facts['discovery_netmask']
|
data/package.json
CHANGED
@@ -27,7 +27,7 @@
|
|
27
27
|
"@babel/core": "^7.7.0",
|
28
28
|
"@theforeman/builder": "^6.0.0",
|
29
29
|
"@theforeman/eslint-plugin-foreman": "^6.0.0",
|
30
|
-
"@theforeman/stories": "^
|
30
|
+
"@theforeman/stories": "^6.0.0",
|
31
31
|
"@theforeman/test": "^8.0.0",
|
32
32
|
"@theforeman/vendor-dev": "^6.0.0",
|
33
33
|
"babel-eslint": "^10.0.3",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_discovery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 17.0.
|
4
|
+
version: 17.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aditi Puntambekar
|
@@ -73,7 +73,7 @@ authors:
|
|
73
73
|
autorequire:
|
74
74
|
bindir: bin
|
75
75
|
cert_chain: []
|
76
|
-
date: 2021-
|
76
|
+
date: 2021-06-16 00:00:00.000000000 Z
|
77
77
|
dependencies: []
|
78
78
|
description: MaaS Discovery Plugin engine for Foreman
|
79
79
|
email: gsutclif@redhat.com
|
@@ -366,8 +366,8 @@ test_files:
|
|
366
366
|
- test/unit/setting_discovered_test.rb
|
367
367
|
- test/unit/discovered_extensions_test.rb
|
368
368
|
- test/unit/discovery_attribute_set_test.rb
|
369
|
-
- test/unit/managed_extensions_test.rb
|
370
369
|
- test/unit/host_discovered_test.rb
|
370
|
+
- test/unit/managed_extensions_test.rb
|
371
371
|
- test/unit/discovery_rule_test.rb
|
372
372
|
- test/unit/fact_to_category_resolver_test.rb
|
373
373
|
- test/test_plugin_helper.rb
|