foreman_bootdisk 8.0.0 → 8.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +6 -0
- data/README.md +12 -7
- data/app/assets/javascripts/foreman_bootdisk/host_edit.js +6 -0
- data/app/models/concerns/foreman_bootdisk/compute_resources/vmware.rb +0 -4
- data/app/models/setting/bootdisk.rb +7 -6
- data/app/views/foreman_bootdisk/generic_host.erb +2 -0
- data/app/views/foreman_bootdisk/host.erb +5 -2
- data/db/seeds.d/50-bootdisk_templates.rb +11 -0
- data/lib/foreman_bootdisk/engine.rb +2 -1
- data/lib/foreman_bootdisk/version.rb +1 -1
- data/lib/tasks/bootdisk.rake +3 -6
- data/locale/ca/foreman_bootdisk.po +24 -3
- data/locale/de/foreman_bootdisk.po +24 -3
- data/locale/en/foreman_bootdisk.po +23 -2
- data/locale/en_GB/foreman_bootdisk.po +24 -3
- data/locale/es/foreman_bootdisk.po +24 -3
- data/locale/foreman_bootdisk.pot +32 -4
- data/locale/fr/foreman_bootdisk.po +24 -3
- data/locale/it/foreman_bootdisk.po +24 -3
- data/locale/ja/foreman_bootdisk.po +24 -3
- data/locale/ko/foreman_bootdisk.po +24 -3
- data/locale/pt_BR/foreman_bootdisk.po +24 -3
- data/locale/ru/foreman_bootdisk.po +24 -3
- data/locale/sv_SE/foreman_bootdisk.po +24 -3
- data/locale/zh_CN/foreman_bootdisk.po +24 -3
- data/locale/zh_TW/foreman_bootdisk.po +24 -3
- data/test/test_plugin_helper.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ecc018ff9fc843eed00c29113ffacd3b5f41748
|
4
|
+
data.tar.gz: 1b66b121c941e1920c209fa8150dfaf7bb352473
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35e336d9aedce269030d034096488dbca617a07f3ef69e4525b70a1bfd86881e50d5c7d8a81f01b72295aee440feaab06c7c51e00446b15c0bd39fa5cf7ffedc
|
7
|
+
data.tar.gz: ef28b6dab07c4a17838a41818bc8e2fde706ffb0c0e63022790760aa9349fcc7cf7ef35ae3af7adfa6b6df9f5354b198fbfabcea5a29af214d7b7ea02c757c4b
|
data/CHANGES.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v8.0.1
|
4
|
+
* translate setting names
|
5
|
+
* use dropdown menus for template settings (#14948)
|
6
|
+
* associate orgs and locs to seeded templates (#14682)
|
7
|
+
* use Foreman 1.12 CDROM helper (#15173)
|
8
|
+
|
3
9
|
## v8.0.0
|
4
10
|
* fix button and compute resource loading compatibility with Foreman 1.12
|
5
11
|
|
data/README.md
CHANGED
@@ -270,8 +270,10 @@ The templates used on the boot disks themselves are read-only so they can be
|
|
270
270
|
updated in new versions of the plugin. To customise, copy the contents to a
|
271
271
|
new template and set the name in Administer>Settings>Bootdisk.
|
272
272
|
|
273
|
-
* `bootdisk_host_template` is the name of the per-host
|
274
|
-
|
273
|
+
* _Host image template_ (`bootdisk_host_template`) is the name of the per-host
|
274
|
+
boot disk template
|
275
|
+
* _Generic image template_ (`bootdisk_generic_host_template`) is the name of
|
276
|
+
the generic boot disk template
|
275
277
|
|
276
278
|
These templates are baked into the downloaded ISO files and generally don't
|
277
279
|
need to be modified.
|
@@ -284,11 +286,14 @@ with no intermediate template or bootloader.
|
|
284
286
|
Some more advanced settings are available under Administer>Settings>Bootdisk in
|
285
287
|
the Foreman UI.
|
286
288
|
|
287
|
-
*
|
288
|
-
|
289
|
-
* `
|
290
|
-
|
291
|
-
|
289
|
+
* _Installation media caching_ (`bootdisk_cache_media`) controls whether to
|
290
|
+
cache OS boot files from installation media for full host images
|
291
|
+
* _iPXE directory_ (`bootdisk_ipxe_dir`) points to the directory containing
|
292
|
+
ipxe.lkrn
|
293
|
+
* _ISO generation command_ (`bootdisk_mkiso_command`) is the name of
|
294
|
+
genisoimage/mkisofs on your OS
|
295
|
+
* _SYSLINUX directory_ (`bootdisk_syslinux_dir`) points to the directory
|
296
|
+
containing syslinux images
|
292
297
|
|
293
298
|
### RBAC
|
294
299
|
|
@@ -5,3 +5,9 @@ function bootdisk_provision_method_selected() {
|
|
5
5
|
$('#image_selection select').attr('disabled', true);
|
6
6
|
}
|
7
7
|
$(document).on('change', '#host_provision_method_bootdisk', bootdisk_provision_method_selected);
|
8
|
+
|
9
|
+
$(document).on('ContentLoad', function() {
|
10
|
+
if($('#host_provision_method_bootdisk').is(':checked')) {
|
11
|
+
bootdisk_provision_method_selected();
|
12
|
+
}
|
13
|
+
});
|
@@ -12,10 +12,6 @@ module ForemanBootdisk
|
|
12
12
|
capabilities_without_bootdisk + [:bootdisk]
|
13
13
|
end
|
14
14
|
|
15
|
-
def new_cdrom(attr = {})
|
16
|
-
client.cdroms.new attr
|
17
|
-
end
|
18
|
-
|
19
15
|
def parse_args_with_bootdisk(args = {})
|
20
16
|
args = parse_args_without_bootdisk args
|
21
17
|
if args[:provision_method] == 'bootdisk'
|
@@ -5,15 +5,16 @@ class Setting::Bootdisk< ::Setting
|
|
5
5
|
|
6
6
|
ipxe = ['/usr/lib/ipxe'].find { |p| File.exist?(p) } || '/usr/share/ipxe'
|
7
7
|
syslinux = ['/usr/lib/syslinux'].find { |p| File.exist?(p) } || '/usr/share/syslinux'
|
8
|
+
templates = -> { Hash[ProvisioningTemplate.where(:template_kind => TemplateKind.where(:name => 'Bootdisk')).map{|temp| [temp[:name], temp[:name]]}] }
|
8
9
|
|
9
10
|
Setting.transaction do
|
10
11
|
[
|
11
|
-
self.set('bootdisk_ipxe_dir', N_('Path to directory containing iPXE images'), ipxe),
|
12
|
-
self.set('bootdisk_syslinux_dir', N_('Path to directory containing syslinux images'), syslinux),
|
13
|
-
self.set('bootdisk_host_template', N_('iPXE template to use for host-specific boot disks'), 'Boot disk iPXE - host'),
|
14
|
-
self.set('bootdisk_generic_host_template', N_('iPXE template to use for generic host boot disks'), 'Boot disk iPXE - generic host'),
|
15
|
-
self.set('bootdisk_mkiso_command', N_('Command to generate ISO image, use genisoimage or mkisofs'), 'genisoimage'),
|
16
|
-
self.set('bootdisk_cache_media', N_('Installation media files will be cached for full host images'), true),
|
12
|
+
self.set('bootdisk_ipxe_dir', N_('Path to directory containing iPXE images'), ipxe, N_('iPXE directory')),
|
13
|
+
self.set('bootdisk_syslinux_dir', N_('Path to directory containing syslinux images'), syslinux, N_('SYSLINUX directory')),
|
14
|
+
self.set('bootdisk_host_template', N_('iPXE template to use for host-specific boot disks'), 'Boot disk iPXE - host', N_('Host image template'), nil, :collection => templates),
|
15
|
+
self.set('bootdisk_generic_host_template', N_('iPXE template to use for generic host boot disks'), 'Boot disk iPXE - generic host', N_('Generic image template'), nil, :collection => templates),
|
16
|
+
self.set('bootdisk_mkiso_command', N_('Command to generate ISO image, use genisoimage or mkisofs'), 'genisoimage', N_('ISO generation command')),
|
17
|
+
self.set('bootdisk_cache_media', N_('Installation media files will be cached for full host images'), true, N_('Installation media caching')),
|
17
18
|
].compact.each { |s| self.create s.update(:category => "Setting::Bootdisk") }
|
18
19
|
end
|
19
20
|
|
@@ -14,26 +14,29 @@ bootdisk_raise(N_('Subnet (%s) has no gateway defined'), interface.subnet) if in
|
|
14
14
|
bootdisk_raise(N_('Subnet (%s) has no primary DNS server defined'), interface.subnet) if interface.subnet.dns_primary.nil? || interface.subnet.dns_primary.empty?
|
15
15
|
%>
|
16
16
|
|
17
|
+
echo Foreman Bootdisk: Host image (<%= @host.name %>)
|
18
|
+
|
17
19
|
# loop over net* until the host's MAC matches
|
18
20
|
<% (0..32).each do |i| -%>
|
19
21
|
:net<%= i %>
|
20
22
|
isset ${net<%= i -%>/mac} || goto no_nic
|
21
23
|
echo net<%= i -%> is a ${net<%= i -%>/chip} with MAC ${net<%= i -%>/mac}
|
22
24
|
iseq ${net<%= i -%>/mac} <%= interface.mac -%> || goto net<%= i+1 %>
|
23
|
-
ifopen net<%= i %>
|
24
25
|
set idx:int32 <%= i %>
|
25
26
|
goto loop_success
|
26
27
|
<% end -%>
|
27
28
|
|
28
29
|
:loop_success
|
29
|
-
echo Configuring net${idx} for static IP address
|
30
|
+
echo Configuring net${idx} for static IP address <%= interface.ip %>
|
30
31
|
ifopen net${idx}
|
31
32
|
set netX/ip <%= interface.ip %>
|
32
33
|
set netX/netmask <%= interface.subnet.mask %>
|
33
34
|
set netX/gateway <%= interface.subnet.gateway %>
|
35
|
+
ifstat net${idx}
|
34
36
|
route
|
35
37
|
|
36
38
|
# Note, iPXE can only use one DNS server
|
39
|
+
echo Using DNS <%= interface.subnet.dns_primary %>
|
37
40
|
set dns <%= interface.subnet.dns_primary %>
|
38
41
|
set domain <%= interface.domain.to_s %>
|
39
42
|
|
@@ -1,7 +1,12 @@
|
|
1
1
|
kind = TemplateKind.where(:name => 'Bootdisk').first_or_create
|
2
2
|
|
3
|
+
organizations = Organization.all
|
4
|
+
locations = Location.all
|
5
|
+
created = []
|
6
|
+
|
3
7
|
ProvisioningTemplate.without_auditing do
|
4
8
|
content = File.read(File.join(ForemanBootdisk::Engine.root, 'app', 'views', 'foreman_bootdisk', 'host.erb'))
|
9
|
+
created << 'Boot disk iPXE - host' unless ProvisioningTemplate.find_by_name('Boot disk iPXE - host')
|
5
10
|
tmpl = ProvisioningTemplate.where(:name => 'Boot disk iPXE - host').first_or_create do |template|
|
6
11
|
template.attributes = {
|
7
12
|
:template_kind_id => kind.id,
|
@@ -18,6 +23,7 @@ ProvisioningTemplate.without_auditing do
|
|
18
23
|
tmpl.save!(:validate => false) if tmpl.changes.present?
|
19
24
|
|
20
25
|
content = File.read(File.join(ForemanBootdisk::Engine.root, 'app', 'views', 'foreman_bootdisk', 'generic_host.erb'))
|
26
|
+
created << 'Boot disk iPXE - generic host' unless ProvisioningTemplate.find_by_name('Boot disk iPXE - generic host')
|
21
27
|
tmpl = ProvisioningTemplate.where(:name => 'Boot disk iPXE - generic host').first_or_create do |template|
|
22
28
|
template.attributes = {
|
23
29
|
:template_kind_id => kind.id,
|
@@ -32,4 +38,9 @@ ProvisioningTemplate.without_auditing do
|
|
32
38
|
}
|
33
39
|
tmpl.locked = true
|
34
40
|
tmpl.save!(:validate => false) if tmpl.changes.present?
|
41
|
+
|
42
|
+
ProvisioningTemplate.where(:name => created, :default => true).each do |tmpl|
|
43
|
+
tmpl.organizations = organizations if SETTINGS[:organizations_enabled]
|
44
|
+
tmpl.locations = locations if SETTINGS[:locations_enabled]
|
45
|
+
end
|
35
46
|
end
|
@@ -59,7 +59,8 @@ module ForemanBootdisk
|
|
59
59
|
|
60
60
|
allowed_template_helpers :bootdisk_chain_url, :bootdisk_raise
|
61
61
|
apipie_documented_controllers ["#{ForemanBootdisk::Engine.root}/app/controllers/foreman_bootdisk/api/v2/*.rb"]
|
62
|
-
provision_method 'bootdisk', N_('
|
62
|
+
provision_method 'bootdisk', N_('Boot disk based')
|
63
|
+
template_labels 'Bootdisk' => N_('Boot disk embedded template')
|
63
64
|
end
|
64
65
|
end
|
65
66
|
|
data/lib/tasks/bootdisk.rake
CHANGED
@@ -68,16 +68,13 @@ namespace :test do
|
|
68
68
|
t.libs << ["test",test_dir]
|
69
69
|
t.pattern = "#{test_dir}/**/*_test.rb"
|
70
70
|
t.verbose = true
|
71
|
+
t.warning = false
|
71
72
|
end
|
72
73
|
end
|
73
74
|
|
74
|
-
Rake::Task[:test].enhance
|
75
|
-
Rake::Task['test:foreman_bootdisk'].invoke
|
76
|
-
end
|
75
|
+
Rake::Task[:test].enhance ['test:foreman_bootdisk']
|
77
76
|
|
78
77
|
load 'tasks/jenkins.rake'
|
79
78
|
if Rake::Task.task_defined?(:'jenkins:unit')
|
80
|
-
Rake::Task["jenkins:unit"].enhance
|
81
|
-
Rake::Task['test:foreman_bootdisk'].invoke
|
82
|
-
end
|
79
|
+
Rake::Task["jenkins:unit"].enhance ['test:foreman_bootdisk']
|
83
80
|
end
|
@@ -33,12 +33,15 @@ msgstr "Enrere"
|
|
33
33
|
msgid "Boot disk"
|
34
34
|
msgstr "Disc d'arrencada"
|
35
35
|
|
36
|
-
msgid "Boot
|
37
|
-
msgstr "
|
36
|
+
msgid "Boot disk based"
|
37
|
+
msgstr ""
|
38
38
|
|
39
|
-
msgid "
|
39
|
+
msgid "Boot disk embedded template"
|
40
40
|
msgstr ""
|
41
41
|
|
42
|
+
msgid "Boot disks"
|
43
|
+
msgstr "Discs d'arrencada"
|
44
|
+
|
42
45
|
msgid "Command to generate ISO image, use genisoimage or mkisofs"
|
43
46
|
msgstr "L'ordre per generar la imatge ISO, utilitzeu genisoimage o mkisofs"
|
44
47
|
|
@@ -75,6 +78,9 @@ msgstr ""
|
|
75
78
|
msgid "Generic image"
|
76
79
|
msgstr "Imatge genèrica"
|
77
80
|
|
81
|
+
msgid "Generic image template"
|
82
|
+
msgstr ""
|
83
|
+
|
78
84
|
msgid "Generic images are a reusable disk image that works for any host registered in Foreman. It requires a basic DHCP and DNS service to function and contact the server, but does not require DHCP reservations or static IP addresses."
|
79
85
|
msgstr ""
|
80
86
|
|
@@ -99,15 +105,24 @@ msgstr "L'amfitrió no té definida cap subxarxa"
|
|
99
105
|
msgid "Host image"
|
100
106
|
msgstr "Imatge d'amfitrió"
|
101
107
|
|
108
|
+
msgid "Host image template"
|
109
|
+
msgstr ""
|
110
|
+
|
102
111
|
msgid "Host is not in build mode, so the template cannot be rendered"
|
103
112
|
msgstr ""
|
104
113
|
|
105
114
|
msgid "ISO build failed"
|
106
115
|
msgstr "No s'ha pogut construir la ISO"
|
107
116
|
|
117
|
+
msgid "ISO generation command"
|
118
|
+
msgstr ""
|
119
|
+
|
108
120
|
msgid "ISO hybrid conversion failed"
|
109
121
|
msgstr ""
|
110
122
|
|
123
|
+
msgid "Installation media caching"
|
124
|
+
msgstr ""
|
125
|
+
|
111
126
|
msgid "Installation media files will be cached for full host images"
|
112
127
|
msgstr "Els fitxers dels mitjans d'instal·lació s'emmagatzemaran en memòria cau per a les imatges completes dels amfitrions"
|
113
128
|
|
@@ -129,6 +144,9 @@ msgstr "Si us plau, assegureu-vos que estiguin instal·lats els paquets ipxe-boo
|
|
129
144
|
msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
|
130
145
|
msgstr ""
|
131
146
|
|
147
|
+
msgid "SYSLINUX directory"
|
148
|
+
msgstr ""
|
149
|
+
|
132
150
|
msgid "Subnet '%s' generic image"
|
133
151
|
msgstr ""
|
134
152
|
|
@@ -174,6 +192,9 @@ msgstr ""
|
|
174
192
|
msgid "Various types of boot disks can be created to provision hosts without the need for PXE services. Boot disks can be attached to the host (physical or virtual) which boots from the disk, contacts Foreman and begins the OS installation."
|
175
193
|
msgstr ""
|
176
194
|
|
195
|
+
msgid "iPXE directory"
|
196
|
+
msgstr ""
|
197
|
+
|
177
198
|
msgid "iPXE template to use for generic host boot disks"
|
178
199
|
msgstr ""
|
179
200
|
|
@@ -35,12 +35,15 @@ msgstr "Zurück"
|
|
35
35
|
msgid "Boot disk"
|
36
36
|
msgstr "Startmedium"
|
37
37
|
|
38
|
-
msgid "Boot
|
39
|
-
msgstr "
|
38
|
+
msgid "Boot disk based"
|
39
|
+
msgstr ""
|
40
40
|
|
41
|
-
msgid "
|
41
|
+
msgid "Boot disk embedded template"
|
42
42
|
msgstr ""
|
43
43
|
|
44
|
+
msgid "Boot disks"
|
45
|
+
msgstr "Startmedien"
|
46
|
+
|
44
47
|
msgid "Command to generate ISO image, use genisoimage or mkisofs"
|
45
48
|
msgstr "Kommando zur Erstellung von ISO-Abbildern, verwende genisoimage oder mkisofs"
|
46
49
|
|
@@ -77,6 +80,9 @@ msgstr ""
|
|
77
80
|
msgid "Generic image"
|
78
81
|
msgstr "Generisches Abbild"
|
79
82
|
|
83
|
+
msgid "Generic image template"
|
84
|
+
msgstr ""
|
85
|
+
|
80
86
|
msgid "Generic images are a reusable disk image that works for any host registered in Foreman. It requires a basic DHCP and DNS service to function and contact the server, but does not require DHCP reservations or static IP addresses."
|
81
87
|
msgstr "Generische Abbilder sind wiederverwendbare Festplattenabbilder die für beliebige in Foreman registrierte Hosts funktionieren. Sie erfordern einen einfachen DHCP- und DNS-Service, um zu funktionieren und den Server zu kontaktieren. Jedoch benötigen sie keinerlei DHCP-Reservierungen oder statische IP-Adressen."
|
82
88
|
|
@@ -101,15 +107,24 @@ msgstr "Host hat kein Subnetz definiert"
|
|
101
107
|
msgid "Host image"
|
102
108
|
msgstr "Host-Abbild"
|
103
109
|
|
110
|
+
msgid "Host image template"
|
111
|
+
msgstr ""
|
112
|
+
|
104
113
|
msgid "Host is not in build mode, so the template cannot be rendered"
|
105
114
|
msgstr "Host ist nicht im Buildmodus. Daher kann die Vorlage nicht erstellt werden."
|
106
115
|
|
107
116
|
msgid "ISO build failed"
|
108
117
|
msgstr "ISO-Erstellung fehlgeschlagen"
|
109
118
|
|
119
|
+
msgid "ISO generation command"
|
120
|
+
msgstr ""
|
121
|
+
|
110
122
|
msgid "ISO hybrid conversion failed"
|
111
123
|
msgstr "ISO hybrid Konvertierung fehlgeschlagen"
|
112
124
|
|
125
|
+
msgid "Installation media caching"
|
126
|
+
msgstr ""
|
127
|
+
|
113
128
|
msgid "Installation media files will be cached for full host images"
|
114
129
|
msgstr "Installationsmedien-Dateien werden für vollständige Host-Images zwischengespeichert."
|
115
130
|
|
@@ -131,6 +146,9 @@ msgstr "Bitte stellen Sie sicher, dass die Pakete ipxe-bootimgs und syslinux ins
|
|
131
146
|
msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
|
132
147
|
msgstr "Plugin für Foreman, welches iPXE-basierte Startmedien erstellt, um Hosts ohne die Notwendigkeit einer PXE-Infrastruktur bereitzustellen."
|
133
148
|
|
149
|
+
msgid "SYSLINUX directory"
|
150
|
+
msgstr ""
|
151
|
+
|
134
152
|
msgid "Subnet '%s' generic image"
|
135
153
|
msgstr "Subnetz '%s' generisches Abbild"
|
136
154
|
|
@@ -176,6 +194,9 @@ msgstr ""
|
|
176
194
|
msgid "Various types of boot disks can be created to provision hosts without the need for PXE services. Boot disks can be attached to the host (physical or virtual) which boots from the disk, contacts Foreman and begins the OS installation."
|
177
195
|
msgstr "Verschiedene Arten von Startmedien können erstellt werden, um Hosts ohne die Notwendigkeit von PXE-Diensten bereitzustellen. Startmedien können mit dem Host (physisch oder virtuell) verbunden werden, der von der Festplatte bootet, Foreman kontaktiert und die OS-Installation beginnt."
|
178
196
|
|
197
|
+
msgid "iPXE directory"
|
198
|
+
msgstr ""
|
199
|
+
|
179
200
|
msgid "iPXE template to use for generic host boot disks"
|
180
201
|
msgstr "iPXE Vorlage zur Verwendung für generische Host-Startmedien"
|
181
202
|
|
@@ -30,10 +30,13 @@ msgstr ""
|
|
30
30
|
msgid "Boot disk"
|
31
31
|
msgstr ""
|
32
32
|
|
33
|
-
msgid "Boot
|
33
|
+
msgid "Boot disk based"
|
34
|
+
msgstr ""
|
35
|
+
|
36
|
+
msgid "Boot disk embedded template"
|
34
37
|
msgstr ""
|
35
38
|
|
36
|
-
msgid "
|
39
|
+
msgid "Boot disks"
|
37
40
|
msgstr ""
|
38
41
|
|
39
42
|
msgid "Command to generate ISO image, use genisoimage or mkisofs"
|
@@ -72,6 +75,9 @@ msgstr ""
|
|
72
75
|
msgid "Generic image"
|
73
76
|
msgstr ""
|
74
77
|
|
78
|
+
msgid "Generic image template"
|
79
|
+
msgstr ""
|
80
|
+
|
75
81
|
msgid "Generic images are a reusable disk image that works for any host registered in Foreman. It requires a basic DHCP and DNS service to function and contact the server, but does not require DHCP reservations or static IP addresses."
|
76
82
|
msgstr ""
|
77
83
|
|
@@ -96,15 +102,24 @@ msgstr ""
|
|
96
102
|
msgid "Host image"
|
97
103
|
msgstr ""
|
98
104
|
|
105
|
+
msgid "Host image template"
|
106
|
+
msgstr ""
|
107
|
+
|
99
108
|
msgid "Host is not in build mode, so the template cannot be rendered"
|
100
109
|
msgstr ""
|
101
110
|
|
102
111
|
msgid "ISO build failed"
|
103
112
|
msgstr ""
|
104
113
|
|
114
|
+
msgid "ISO generation command"
|
115
|
+
msgstr ""
|
116
|
+
|
105
117
|
msgid "ISO hybrid conversion failed"
|
106
118
|
msgstr ""
|
107
119
|
|
120
|
+
msgid "Installation media caching"
|
121
|
+
msgstr ""
|
122
|
+
|
108
123
|
msgid "Installation media files will be cached for full host images"
|
109
124
|
msgstr ""
|
110
125
|
|
@@ -126,6 +141,9 @@ msgstr ""
|
|
126
141
|
msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
|
127
142
|
msgstr ""
|
128
143
|
|
144
|
+
msgid "SYSLINUX directory"
|
145
|
+
msgstr ""
|
146
|
+
|
129
147
|
msgid "Subnet '%s' generic image"
|
130
148
|
msgstr ""
|
131
149
|
|
@@ -171,6 +189,9 @@ msgstr ""
|
|
171
189
|
msgid "Various types of boot disks can be created to provision hosts without the need for PXE services. Boot disks can be attached to the host (physical or virtual) which boots from the disk, contacts Foreman and begins the OS installation."
|
172
190
|
msgstr ""
|
173
191
|
|
192
|
+
msgid "iPXE directory"
|
193
|
+
msgstr ""
|
194
|
+
|
174
195
|
msgid "iPXE template to use for generic host boot disks"
|
175
196
|
msgstr ""
|
176
197
|
|
@@ -35,12 +35,15 @@ msgstr "Back"
|
|
35
35
|
msgid "Boot disk"
|
36
36
|
msgstr "Boot disk"
|
37
37
|
|
38
|
+
msgid "Boot disk based"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
msgid "Boot disk embedded template"
|
42
|
+
msgstr ""
|
43
|
+
|
38
44
|
msgid "Boot disks"
|
39
45
|
msgstr "Boot disks"
|
40
46
|
|
41
|
-
msgid "Bootdisk Based"
|
42
|
-
msgstr "Bootdisk Based"
|
43
|
-
|
44
47
|
msgid "Command to generate ISO image, use genisoimage or mkisofs"
|
45
48
|
msgstr "Command to generate ISO image, use genisoimage or mkisofs"
|
46
49
|
|
@@ -77,6 +80,9 @@ msgstr "Generating ISO image for %s"
|
|
77
80
|
msgid "Generic image"
|
78
81
|
msgstr "Generic image"
|
79
82
|
|
83
|
+
msgid "Generic image template"
|
84
|
+
msgstr ""
|
85
|
+
|
80
86
|
msgid "Generic images are a reusable disk image that works for any host registered in Foreman. It requires a basic DHCP and DNS service to function and contact the server, but does not require DHCP reservations or static IP addresses."
|
81
87
|
msgstr "Generic images are a reusable disk image that works for any host registered in Foreman. It requires a basic DHCP and DNS service to function and contact the server, but does not require DHCP reservations or static IP addresses."
|
82
88
|
|
@@ -101,15 +107,24 @@ msgstr "Host has no subnet defined"
|
|
101
107
|
msgid "Host image"
|
102
108
|
msgstr "Host image"
|
103
109
|
|
110
|
+
msgid "Host image template"
|
111
|
+
msgstr ""
|
112
|
+
|
104
113
|
msgid "Host is not in build mode, so the template cannot be rendered"
|
105
114
|
msgstr "Host is not in build mode, so the template cannot be rendered"
|
106
115
|
|
107
116
|
msgid "ISO build failed"
|
108
117
|
msgstr "ISO build failed"
|
109
118
|
|
119
|
+
msgid "ISO generation command"
|
120
|
+
msgstr ""
|
121
|
+
|
110
122
|
msgid "ISO hybrid conversion failed"
|
111
123
|
msgstr "ISO hybrid conversion failed"
|
112
124
|
|
125
|
+
msgid "Installation media caching"
|
126
|
+
msgstr ""
|
127
|
+
|
113
128
|
msgid "Installation media files will be cached for full host images"
|
114
129
|
msgstr "Installation media files will be cached for full host images"
|
115
130
|
|
@@ -131,6 +146,9 @@ msgstr "Please ensure the ipxe-bootimgs and syslinux packages are installed."
|
|
131
146
|
msgid "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
|
132
147
|
msgstr "Plugin for Foreman that creates iPXE-based boot disks to provision hosts without the need for PXE infrastructure."
|
133
148
|
|
149
|
+
msgid "SYSLINUX directory"
|
150
|
+
msgstr ""
|
151
|
+
|
134
152
|
msgid "Subnet '%s' generic image"
|
135
153
|
msgstr "Subnet '%s' generic image"
|
136
154
|
|
@@ -176,6 +194,9 @@ msgstr "Upload ISO image to datastore for %s"
|
|
176
194
|
msgid "Various types of boot disks can be created to provision hosts without the need for PXE services. Boot disks can be attached to the host (physical or virtual) which boots from the disk, contacts Foreman and begins the OS installation."
|
177
195
|
msgstr "Various types of boot disks can be created to provision hosts without the need for PXE services. Boot disks can be attached to the host (physical or virtual) which boots from the disk, contacts Foreman and begins the OS installation."
|
178
196
|
|
197
|
+
msgid "iPXE directory"
|
198
|
+
msgstr ""
|
199
|
+
|
179
200
|
msgid "iPXE template to use for generic host boot disks"
|
180
201
|
msgstr "iPXE template to use for generic host boot disks"
|
181
202
|
|