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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc62297d4d1bc9080a8e9aebe25d02eb185ab357
4
- data.tar.gz: f09c9610aae17af4185be4577f671ac4546ad669
3
+ metadata.gz: 4ecc018ff9fc843eed00c29113ffacd3b5f41748
4
+ data.tar.gz: 1b66b121c941e1920c209fa8150dfaf7bb352473
5
5
  SHA512:
6
- metadata.gz: 61fa71708a3cdd5ee6152197c4cbd8a13011c4c733c821a453e6d9320677463820c624f57224c65d3ec43cd258167ac68cb8bda3829d0d0093fea3fc527bbbd0
7
- data.tar.gz: a8415772ff0aa0ead2e4e5cb6baead0931c315ab131203cb7917df33e290c60fd0f9eaedfd4f93d9a3254ebe7007bf4a923e26fd150e2e5c539da855f15aac8a
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 boot disk template
274
- * `bootdisk_generic_host_template` is the name of the generic boot disk template
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
- * `bootdisk_ipxe_dir` points to the directory containing ipxe.lkrn
288
- * `bootdisk_syslinux_dir` points to the directory containing syslinux images
289
- * `bootdisk_mkiso_command` is the name of genisoimage/mkisofs on your OS
290
- * `bootdisk_cache_media` controls whether to cache OS boot files from
291
- installation media for full host images
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
 
@@ -9,6 +9,8 @@
9
9
  #
10
10
  # Copy this template to customize it, the original is read-only.
11
11
 
12
+ echo Foreman Bootdisk: Generic image
13
+
12
14
  # loop over net* until we can get a template
13
15
  <% url = bootdisk_chain_url %>
14
16
  <% (0..32).each do |i| -%>
@@ -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_('Bootdisk Based')
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
 
@@ -1,3 +1,3 @@
1
1
  module ForemanBootdisk
2
- VERSION = '8.0.0'
2
+ VERSION = '8.0.1'
3
3
  end
@@ -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 do
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 do
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 disks"
37
- msgstr "Discs d'arrencada"
36
+ msgid "Boot disk based"
37
+ msgstr ""
38
38
 
39
- msgid "Bootdisk Based"
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 disks"
39
- msgstr "Startmedien"
38
+ msgid "Boot disk based"
39
+ msgstr ""
40
40
 
41
- msgid "Bootdisk Based"
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 disks"
33
+ msgid "Boot disk based"
34
+ msgstr ""
35
+
36
+ msgid "Boot disk embedded template"
34
37
  msgstr ""
35
38
 
36
- msgid "Bootdisk Based"
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