foreman_bootdisk 23.1.0 → 23.1.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd3257bab9ef8d2bd81645a9bc07a72818436797704eb457b9c0cd96822c3d2e
|
4
|
+
data.tar.gz: 2eab92f59d7a5ac630a1bc6032f46dc3d6d1eace620ddbaa4aebef7170a93175
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87443ca44460fe71f04b47f76832ca5754d6f6ea2a0030714f01e6c873be0dfa3c268c011ed08df41347b346a50645f6a85cfa54dffb9fd90976f263bb93b709
|
7
|
+
data.tar.gz: 7bb4e64a58ad842bbee07e89ded9b0a078a2447b062b96565fede150e410e97e06c50fdc77688aad7f16ac3b6a991e903f88d34ab05af6ce374399a557c5b7b7
|
@@ -133,6 +133,7 @@ module ForemanBootdisk
|
|
133
133
|
File.join(wd, 'build', 'grub-hdd.cfg').to_s => 'GRUB.CFG',
|
134
134
|
File.join(Setting[:bootdisk_grub2_dir], 'grubx64.efi').to_s => 'GRUBX64.EFI',
|
135
135
|
File.join(Setting[:bootdisk_grub2_dir], 'shimx64.efi').to_s => 'BOOTX64.EFI',
|
136
|
+
File.join(Setting[:bootdisk_grub2_dir], 'mmx64.efi').to_s => 'MMX64.EFI',
|
136
137
|
}.each do |src, dest|
|
137
138
|
raise(Foreman::Exception.new(N_('Ensure %{file} is readable (or update "Grub2 directory" setting)'), file: src)) unless File.exist?(src)
|
138
139
|
raise(Foreman::Exception.new(N_('Unable to mcopy %{file}'), file: src)) unless system("mcopy -m -i #{efibootimg} '#{src}' '#{"::/EFI/BOOT/#{dest}"}'")
|
@@ -60,6 +60,7 @@ const HostBootdiskButtons = () => {
|
|
60
60
|
isDisabled={action.disabled}
|
61
61
|
description={action.description}
|
62
62
|
icon={iconComponent(action.icon)}
|
63
|
+
ouiaId={`bootdisk button ${i}`}
|
63
64
|
>
|
64
65
|
{action.title}
|
65
66
|
</DropdownItem>
|
@@ -68,6 +69,7 @@ const HostBootdiskButtons = () => {
|
|
68
69
|
content = (
|
69
70
|
<DropdownItem
|
70
71
|
key="bootdisk-unavailable"
|
72
|
+
ouiaId="bootdisk button unavailable"
|
71
73
|
component="button"
|
72
74
|
href="#"
|
73
75
|
tooltip={sprintf(
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_bootdisk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 23.1.
|
4
|
+
version: 23.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dominic Cleal
|
8
|
+
autorequire:
|
8
9
|
bindir: bin
|
9
10
|
cert_chain: []
|
10
|
-
date: 2025-
|
11
|
+
date: 2025-07-28 00:00:00.000000000 Z
|
11
12
|
dependencies:
|
12
13
|
- !ruby/object:Gem::Dependency
|
13
14
|
name: theforeman-rubocop
|
@@ -149,6 +150,7 @@ homepage: https://github.com/theforeman/foreman_bootdisk
|
|
149
150
|
licenses:
|
150
151
|
- GPL-3.0
|
151
152
|
metadata: {}
|
153
|
+
post_install_message:
|
152
154
|
rdoc_options: []
|
153
155
|
require_paths:
|
154
156
|
- lib
|
@@ -166,7 +168,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
168
|
- !ruby/object:Gem::Version
|
167
169
|
version: '0'
|
168
170
|
requirements: []
|
169
|
-
rubygems_version: 3.
|
171
|
+
rubygems_version: 3.2.33
|
172
|
+
signing_key:
|
170
173
|
specification_version: 4
|
171
174
|
summary: Create boot disks to provision hosts with Foreman
|
172
175
|
test_files: []
|