foreman_discovery 20.0.0 → 20.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: 42e909e67952be309ba249d25294fa97227d9ad9dcd6c98b71f93c33e8d94e4c
4
- data.tar.gz: ccf2de1a46292d285fbf187e7c65def6c7bb0c210bb1d7a26ad4b7353a967f12
3
+ metadata.gz: 47c5efcec999ce2d2785843302d6208b200a241f78fc30b6479a2d283a544299
4
+ data.tar.gz: 926e0dbad91b519e476f922e0764404ab43b0ed64ac1f3bc0dec7b1491155c21
5
5
  SHA512:
6
- metadata.gz: d8fa0da48abb3f11aac1b79b1bc7faa5ec22e9c56543a4802a789a6d626370ccd6c5daa9f5b2faeb4be92af8068d99174a299a5ac865b71de38de8c6785fc369
7
- data.tar.gz: 7a832889e8509358be5c7affeed3894cf964e9c2defc29644f54c1f015f872583ab77bfeed39644c89acad6f0cd3bdb34ae4c7fe08261c971f3e631b4cc60fdc
6
+ metadata.gz: bd21c33c9318c10bc3f15aa4857194f79fae5b0cd2a3f4b43b46ed537c66e10016bca54151b9442209f541f88e53868479e8b9d548f63e38e8a584e440de41ea
7
+ data.tar.gz: 2ed1a0f7cf2169394f58e735a55046ecf3fac8d90df3e23b2a566173af68da74932f891d0237096093b18a7451850653a79d014f0bad0d5df2db8f1297a0087c
@@ -47,9 +47,9 @@ Extra options like --reset-vga can be set via "extra" array.
47
47
  "initram": "<%= @initrd_uri %>",
48
48
  <% if (@host.operatingsystem.name == 'Fedora' and @host.operatingsystem.major.to_i > 16) or
49
49
  (@host.operatingsystem.name != 'Fedora' and @host.operatingsystem.major.to_i >= 7) -%>
50
- "append": "ks=<%= foreman_url('provision') + "&static=yes" %> inst.ks.sendmac <%= "ip=#{ip}::#{gw}:#{mask}:::none nameserver=#{dns} ksdevice=bootif BOOTIF=#{bootif} nomodeset nokaslr " + options.compact.join(' ') %>",
50
+ "append": "inst.ks=<%= foreman_url('provision') + "&static=yes" %> inst.ks.sendmac <%= "ip=#{ip}::#{gw}:#{mask}:::none nameserver=#{dns} ksdevice=bootif BOOTIF=#{bootif} nomodeset nokaslr " + options.compact.join(' ') %>",
51
51
  <% else -%>
52
- "append": "ks=<%= foreman_url('provision') + "&static=yes" %> kssendmac nicdelay=5 <%= "ip=#{ip} netmask=#{mask} gateway=#{gw} dns=#{dns} ksdevice=#{mac} BOOTIF=#{bootif} nomodeset nokaslr " + options.compact.join(' ') %>",
52
+ "append": "inst.ks=<%= foreman_url('provision') + "&static=yes" %> kssendmac nicdelay=5 <%= "ip=#{ip} netmask=#{mask} gateway=#{gw} dns=#{dns} ksdevice=#{mac} BOOTIF=#{bootif} nomodeset nokaslr " + options.compact.join(' ') %>",
53
53
  <% end -%>
54
54
  "extra": []
55
55
  }
@@ -1,3 +1,3 @@
1
1
  module ForemanDiscovery
2
- VERSION = "20.0.0"
2
+ VERSION = "20.0.1"
3
3
  end
@@ -91,7 +91,7 @@ class ManagedExtensionsTest < ActiveSupport::TestCase
91
91
 
92
92
  test "kexec template is correctly rendered" do
93
93
  expected = {
94
- "append" => "ks=http://foreman.some.host.fqdn/unattended/provision&static=yes inst.ks.sendmac ip=::::::none nameserver= ksdevice=bootif BOOTIF= nomodeset nokaslr nomodeset",
94
+ "append" => "inst.ks=http://foreman.some.host.fqdn/unattended/provision&static=yes inst.ks.sendmac ip=::::::none nameserver= ksdevice=bootif BOOTIF= nomodeset nokaslr nomodeset",
95
95
  "extra" => []
96
96
  }
97
97
  assert @host.operatingsystem.respond_to?(:pxe_type)
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: 20.0.0
4
+ version: 20.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aditi Puntambekar
@@ -74,7 +74,7 @@ authors:
74
74
  autorequire:
75
75
  bindir: bin
76
76
  cert_chain: []
77
- date: 2021-11-25 00:00:00.000000000 Z
77
+ date: 2022-01-20 00:00:00.000000000 Z
78
78
  dependencies: []
79
79
  description: MaaS Discovery Plugin engine for Foreman
80
80
  email: gsutclif@redhat.com
@@ -362,10 +362,10 @@ test_files:
362
362
  - test/unit/lldp_neighbors_test.rb
363
363
  - test/unit/discovery_rule_test.rb
364
364
  - test/unit/fact_to_category_resolver_test.rb
365
- - test/unit/managed_extensions_test.rb
366
- - test/unit/host_discovered_test.rb
367
365
  - test/unit/discovered_extensions_test.rb
368
366
  - test/unit/discovery_attribute_set_test.rb
369
367
  - test/unit/fact_parser_test.rb
368
+ - test/unit/host_discovered_test.rb
369
+ - test/unit/managed_extensions_test.rb
370
370
  - test/test_helper_discovery.rb
371
371
  - test/test_plugin_helper.rb