foreman_discovery 23.0.2 → 24.0.0

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: 2af9907694c24e71a07821c25a97af3353d334cc63557b801db69cacf85e47b8
4
- data.tar.gz: e501ebae40fa529940a1f263a0f41e72eba10c77dad1abbc7e08fdfcff197b57
3
+ metadata.gz: 76f3192238fe98894488060d699286e6dd1a0baf5288aeb121688d8109064868
4
+ data.tar.gz: d8367489d3500b8c5339fab630f4a88cacf0ba04c4be60964747b8b2f47246a7
5
5
  SHA512:
6
- metadata.gz: 5f125da984e0713a9a7e22af5eaa410e8908e248f7331b163c627b02c09564aab16edddc7883d049dc9b4b02501c56f09ec7a18116e816804fec59859a3c2ad3
7
- data.tar.gz: c5affa967bc8af1a68236561dec3f9c5c893a16293cd0a35a1c632180bd0313b9f37a9bdace4912f4af7cc8775870163a03be664ab5a0e19e57babbb11ac482f
6
+ metadata.gz: c1f64acaf2b19c689d5d11f7a9ce557a7f2d7ec1cf612bcd5bc710b303764289507c9e80d9b2541102203d0a125cb37f091ed843db58a1d9ddfd0357f7846a68
7
+ data.tar.gz: 4de514ded1d66d77b69a4510b26db4c74f549262c52266abedbf7ec573435409e689a23b86beacdcc550bfd0041561454d2fcc00afd9644b00a0a0150d54ac23
data/README.md CHANGED
@@ -26,11 +26,11 @@ instead of github.com issues. Please report issues there.
26
26
 
27
27
  There are unit and integration tests in the repository, to run them execute the following in the *Foreman core* directory:
28
28
 
29
- bundle exec rake test:discovery
29
+ bundle exec rake test:foreman_discovery
30
30
 
31
31
  It is possible to execute a single test, however the path must be *absolute* (e.g. use `$HOME` variable):
32
32
 
33
- bundle exec rake test:discovery TEST=~/work/foreman_discovery/test/unit/host_discovered_test.rb
33
+ bundle exec rake test:foreman_discovery TEST=~/work/foreman_discovery/test/unit/host_discovered_test.rb
34
34
 
35
35
  # Copyright
36
36
 
@@ -1,10 +1,3 @@
1
- <% content_for(:javascripts) do %>
2
- <%= webpacked_plugins_js_for :'foreman_discovery' %>
3
- <% end %>
4
- <% content_for(:stylesheets) do %>
5
- <%= webpacked_plugins_css_for :'foreman_discovery' %>
6
- <% end %>
7
-
8
1
  <% content_for(:title, _("Discovered Hosts")) %>
9
2
 
10
3
  <% content_for(:content) do %>
@@ -1,10 +1,3 @@
1
- <% content_for(:javascripts) do %>
2
- <%= webpacked_plugins_js_for :'foreman_discovery' %>
3
- <% end %>
4
- <% content_for(:stylesheets) do %>
5
- <%= webpacked_plugins_css_for :'foreman_discovery' %>
6
- <% end %>
7
-
8
1
  <% content_for(:title, _("Discovered Rules")) %>
9
2
 
10
3
  <% content_for(:content) do %>
@@ -30,7 +30,7 @@ module ForemanDiscovery
30
30
 
31
31
  initializer 'foreman_discovery.register_plugin', :before => :finisher_hook do |app|
32
32
  Foreman::Plugin.register :foreman_discovery do
33
- requires_foreman '>= 3.8'
33
+ requires_foreman '>= 3.10'
34
34
  register_gettext
35
35
 
36
36
  # settings
@@ -75,11 +75,10 @@ module ForemanDiscovery
75
75
  setting "discovery_hostname",
76
76
  type: :array,
77
77
  default: ["discovery_bootif"],
78
+ validate: { presence: true },
78
79
  full_name: N_("Hostname facts"),
79
80
  description: N_("List of facts to use for the hostname (first wins)")
80
81
 
81
- validates "discovery_hostname", presence: true
82
-
83
82
  setting "discovery_auto",
84
83
  type: :boolean,
85
84
  default: false,
@@ -95,11 +94,10 @@ module ForemanDiscovery
95
94
  setting "discovery_prefix",
96
95
  type: :string,
97
96
  default: "mac",
97
+ validate: { presence: true },
98
98
  full_name: N_("Hostname prefix"),
99
99
  description: N_("The default prefix to use for the host name, must start with a letter")
100
100
 
101
- validates "discovery_prefix", presence: true
102
-
103
101
  setting "discovery_fact_column",
104
102
  type: :array,
105
103
  default: [],
@@ -367,7 +365,7 @@ module ForemanDiscovery
367
365
  end
368
366
 
369
367
  rake_tasks do
370
- load "discovery.rake"
368
+ load "foreman_discovery.rake"
371
369
  Rake::Task['db:seed'].enhance do
372
370
  ForemanDiscovery::Engine.load_seed
373
371
  end
@@ -1,3 +1,3 @@
1
1
  module ForemanDiscovery
2
- VERSION = "23.0.2"
2
+ VERSION = "24.0.0"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  # Setup Tests
2
2
  namespace :test do
3
3
  desc "Test Discovery plugin"
4
- Rake::TestTask.new(:discovery) do |t|
4
+ Rake::TestTask.new(:foreman_discovery) do |t|
5
5
  test_dir = File.join(File.dirname(__FILE__), '..', 'test')
6
6
  t.libs << ["test",test_dir]
7
7
  if ENV['FILE'] || ENV['TEST']
@@ -14,13 +14,13 @@ namespace :test do
14
14
  end
15
15
  end
16
16
  Rake::Task[:test].enhance do
17
- Rake::Task['test:discovery'].invoke
17
+ Rake::Task['test:foreman_discovery'].invoke
18
18
  end
19
19
 
20
20
  load 'tasks/jenkins.rake'
21
21
  if Rake::Task.task_defined?(:'jenkins:unit')
22
22
  # The "unit" tests also include system tests
23
23
  Rake::Task["jenkins:unit"].enhance(['webpack:compile']) do
24
- Rake::Task['test:discovery'].invoke
24
+ Rake::Task['test:foreman_discovery'].invoke
25
25
  end
26
26
  end
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: 23.0.2
4
+ version: 24.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aditi Puntambekar
@@ -76,7 +76,7 @@ authors:
76
76
  autorequire:
77
77
  bindir: bin
78
78
  cert_chain: []
79
- date: 2024-03-05 00:00:00.000000000 Z
79
+ date: 2024-02-16 00:00:00.000000000 Z
80
80
  dependencies: []
81
81
  description: MaaS Discovery Plugin engine for Foreman
82
82
  email: gsutclif@redhat.com
@@ -213,7 +213,7 @@ files:
213
213
  - db/seeds.d/90_add_permissions_from_default_roles.rb
214
214
  - extra/discover-host
215
215
  - extra/generate-authors-file
216
- - lib/discovery.rake
216
+ - lib/foreman_discovery.rake
217
217
  - lib/foreman_discovery.rb
218
218
  - lib/foreman_discovery/engine.rb
219
219
  - lib/foreman_discovery/version.rb