foreman_bootdisk 3.1.1 → 3.1.2

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: 24ff51f73764abf0b48731a7c2d4018a5dd59cf6
4
- data.tar.gz: c5414e2c0ff9241370135e860dd01d23cb613e6d
3
+ metadata.gz: 6e2545c008aab7752ca6a9a396bb6f07c247872c
4
+ data.tar.gz: 7f99466c2e65a501e9d4e851c185f3f246e18e15
5
5
  SHA512:
6
- metadata.gz: a7faca8fbfe243f267fc11b8ebdc44d81710f27e96f91ff3d766fc603630d8bffbeb50b278fd2be15f97a84360018631e3be1723b04f45488861db162b56ae44
7
- data.tar.gz: a2101a383d14e19352074004d42bce2ba2c4519951a042820281eea2fc93504e70cc466d3e7f6e0c6220742a7dafdbf683595f0a244384b4e5136c090d0430d7
6
+ metadata.gz: 769076ee4275b5199c9d42a56deb210f07f2e3979e145bd2ad467334e0f2da1289e02cbe607fc14677dd844c2d1200291cacf1718278f7df7cbc179ad157cb0f
7
+ data.tar.gz: 2f0b7e4043d7207b335ca985dbd72c4b4400dcdf7a1c61be52bfac8f837564a0dd6d9064cccb44fbbc6f7377eebe481bc3b70ec2fbee53a40b1963fb656843ca
data/CHANGES.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v3.1.2
4
+ * add help page
5
+ * rearrange README to be clearer about basic vs advanced config
6
+ * fix safemode error when IP/subnet details were nil, not empty strings
7
+ * disable debug logging of disk download responses
8
+
3
9
  ## v3.1.1
4
10
  * package .mo files for i18n support (#7153)
5
11
 
data/README.md CHANGED
@@ -81,27 +81,6 @@ this:
81
81
 
82
82
  Foreman's default kickstart and preseed files are ready to use.
83
83
 
84
- ### Customising boot disk templates
85
-
86
- The templates used on the boot disks themselves are read-only so they can be
87
- updated in new versions of the plugin. To customise, copy the contents to a
88
- new template and set the name in Administer>Settings>Bootdisk.
89
-
90
- * `bootdisk_host_template` is the name of the per-host boot disk template
91
- * `bootdisk_generic_host_template` is the name of the generic boot disk template
92
-
93
- These templates are baked into the downloaded ISO files and generally don't
94
- need to be modified.
95
-
96
- ## Settings
97
-
98
- Some more advanced settings are available under Administer>Settings>Bootdisk in
99
- the Foreman UI.
100
-
101
- * `bootdisk_ipxe_dir` points to the directory containing ipxe.lkrn
102
- * `bootdisk_syslinux_dir` points to the directory containing syslinux images
103
- * `bootdisk_mkiso_command` is the name of genisoimage/mkisofs on your OS
104
-
105
84
  ## Available images
106
85
 
107
86
  The image types have trade-offs, but are all meant for environments without
@@ -194,6 +173,29 @@ as disks too, suitable for copying to a USB device.
194
173
  Use `dd if=fqdn.iso of=/dev/sdb` or similar to copy the image to a USB disk.
195
174
  Ensure the device name is correct to avoid writing over the wrong disk.
196
175
 
176
+ ## Advanced configuration
177
+
178
+ ### Customising boot disk templates
179
+
180
+ The templates used on the boot disks themselves are read-only so they can be
181
+ updated in new versions of the plugin. To customise, copy the contents to a
182
+ new template and set the name in Administer>Settings>Bootdisk.
183
+
184
+ * `bootdisk_host_template` is the name of the per-host boot disk template
185
+ * `bootdisk_generic_host_template` is the name of the generic boot disk template
186
+
187
+ These templates are baked into the downloaded ISO files and generally don't
188
+ need to be modified.
189
+
190
+ ### Settings
191
+
192
+ Some more advanced settings are available under Administer>Settings>Bootdisk in
193
+ the Foreman UI.
194
+
195
+ * `bootdisk_ipxe_dir` points to the directory containing ipxe.lkrn
196
+ * `bootdisk_syslinux_dir` points to the directory containing syslinux images
197
+ * `bootdisk_mkiso_command` is the name of genisoimage/mkisofs on your OS
198
+
197
199
  # Issues
198
200
 
199
201
  Report issues on the Redmine project: [foreman_bootdisk](http://projects.theforeman.org/projects/bootdisk/issues/new)
@@ -11,6 +11,7 @@ module ForemanBootdisk
11
11
  end
12
12
 
13
13
  before_filter :find_host, :only => :host
14
+ skip_after_filter :log_response_body
14
15
 
15
16
  # no-op, but required for apipie documentation
16
17
  api :GET, '', N_('Boot disks')
@@ -33,6 +33,9 @@ module ForemanBootdisk
33
33
  end
34
34
  end
35
35
 
36
+ def help
37
+ end
38
+
36
39
  private
37
40
 
38
41
  def resource_base
@@ -10,7 +10,8 @@ module ForemanBootdisk::HostsHelperExt
10
10
  button_group(
11
11
  select_action_button(_('Boot disk'), {},
12
12
  display_bootdisk_link_if_authorized(_("Host '%s' image") % @host.name.split('.')[0], {:controller => 'foreman_bootdisk/disks', :action => 'host', :id => @host}, :class=>'btn'),
13
- display_bootdisk_link_if_authorized(_("Generic image"), {:controller => 'foreman_bootdisk/disks', :action => 'generic'}, :class=>'btn')
13
+ display_bootdisk_link_if_authorized(_("Generic image"), {:controller => 'foreman_bootdisk/disks', :action => 'generic'}, :class=>'btn'),
14
+ display_bootdisk_link_if_authorized(_("Help"), {:controller => 'foreman_bootdisk/disks', :action => 'help'}, :class=>'btn')
14
15
  )
15
16
  )
16
17
  )
@@ -0,0 +1,27 @@
1
+ <% title _("Boot disks") %>
2
+ <%= title_actions link_to(_('Back'), :back) %>
3
+
4
+ <div id="welcome">
5
+ <p>
6
+ <%= _('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.') %>
7
+ </p>
8
+ <p>
9
+ <%= _('All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`.') %>
10
+ </p>
11
+
12
+ <h2><%= _('Host image') %></h2>
13
+ <p>
14
+ <%= _("Per-host images contain data about a particular host registered in Foreman and set up fully static networking, avoiding the requirement for DHCP. After networking is configured, they chainload from Foreman, picking up the current OS configuration and build state from the server.") %>
15
+ </p>
16
+ <p>
17
+ <%= _("Once chainloaded, the OS bootloader and installer are downloaded directly from the installation media configured in Foreman, and the provisioning script (kickstart/preseed) is downloaded from Foreman.") %>
18
+ </p>
19
+
20
+ <h2><%= _('Generic image') %></h2>
21
+ <p>
22
+ <%= _('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.') %>
23
+ </p>
24
+ <p>
25
+ <%= _('The OS install continues using the installation media configured in Foreman, and it will typically configure static networking, depending on how the OS iPXE template is configured.') %>
26
+ </p>
27
+ </div>
@@ -5,11 +5,11 @@
5
5
  # Copy this template to customize it, the original is read-only.
6
6
 
7
7
  <%
8
- bootdisk_raise(N_('Host has no IP address defined')) if @host.ip.empty?
8
+ bootdisk_raise(N_('Host has no IP address defined')) if @host.ip.nil? || @host.ip.empty?
9
9
  bootdisk_raise(N_('Host has no subnet defined')) unless @host.subnet
10
10
  bootdisk_raise(N_('Host has no domain defined')) unless @host.domain
11
- bootdisk_raise(N_('Subnet (%s) has no gateway defined'), @host.subnet) if @host.subnet.gateway.empty?
12
- bootdisk_raise(N_('Subnet (%s) has no primary DNS server defined'), @host.subnet) if @host.subnet.dns_primary.empty?
11
+ bootdisk_raise(N_('Subnet (%s) has no gateway defined'), @host.subnet) if @host.subnet.gateway.nil? || @host.subnet.gateway.empty?
12
+ bootdisk_raise(N_('Subnet (%s) has no primary DNS server defined'), @host.subnet) if @host.subnet.dns_primary.nil? || @host.subnet.dns_primary.empty?
13
13
  %>
14
14
 
15
15
  # loop over net* until the host's MAC matches
data/config/routes.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  ForemanBootdisk::Engine.routes.draw do
2
2
  resources :disks, :only => [] do
3
3
  get 'generic', :on => :collection
4
+ get 'help', :on => :collection
4
5
  constraints(:id => /[^\/]+/) do
5
6
  get 'hosts/:id', :on => :collection, :to => 'disks#host'
6
7
  end
@@ -32,7 +32,7 @@ module ForemanBootdisk
32
32
  requires_foreman '>= 1.6'
33
33
 
34
34
  security_block :bootdisk do |map|
35
- permission :download_bootdisk, {:'foreman_bootdisk/disks' => [:generic, :host],
35
+ permission :download_bootdisk, {:'foreman_bootdisk/disks' => [:generic, :host, :help],
36
36
  :'foreman_bootdisk/api/v2/disks' => [:generic, :host]}
37
37
  end
38
38
 
@@ -1,3 +1,3 @@
1
1
  module ForemanBootdisk
2
- VERSION = '3.1.1'
2
+ VERSION = '3.1.2'
3
3
  end
@@ -7,7 +7,7 @@
7
7
  # simon11 <simon.stieger.98@live.de>, 2014
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_bootdisk 3.1.0\n"
10
+ "Project-Id-Version: foreman_bootdisk 3.1.1\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
12
  "POT-Creation-Date: 2014-08-08 13:53+0100\n"
13
13
  "PO-Revision-Date: 2014-08-09 08:59+0000\n"
@@ -5,9 +5,9 @@
5
5
  #, fuzzy
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_bootdisk 3.1.0\n"
8
+ "Project-Id-Version: foreman_bootdisk 3.1.1\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2014-08-08 13:53+0100\n"
10
+ "POT-Creation-Date: 2014-09-03 12:20+0100\n"
11
11
  "PO-Revision-Date: 2014-02-13 12:09+0000\n"
12
12
  "Last-Translator: Dominic Cleal <dcleal@redhat.com>\n"
13
13
  "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
@@ -17,6 +17,12 @@ msgstr ""
17
17
  "Content-Transfer-Encoding: 8bit\n"
18
18
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
19
 
20
+ msgid "All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`."
21
+ msgstr ""
22
+
23
+ msgid "Back"
24
+ msgstr ""
25
+
20
26
  msgid "Boot disk"
21
27
  msgstr ""
22
28
 
@@ -41,6 +47,12 @@ msgstr ""
41
47
  msgid "Generic image"
42
48
  msgstr ""
43
49
 
50
+ 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."
51
+ msgstr ""
52
+
53
+ msgid "Help"
54
+ msgstr ""
55
+
44
56
  msgid "Host '%s' image"
45
57
  msgstr ""
46
58
 
@@ -53,18 +65,27 @@ msgstr ""
53
65
  msgid "Host has no subnet defined"
54
66
  msgstr ""
55
67
 
68
+ msgid "Host image"
69
+ msgstr ""
70
+
56
71
  msgid "ISO build failed"
57
72
  msgstr ""
58
73
 
59
74
  msgid "ISO hybrid conversion failed"
60
75
  msgstr ""
61
76
 
77
+ msgid "Once chainloaded, the OS bootloader and installer are downloaded directly from the installation media configured in Foreman, and the provisioning script (kickstart/preseed) is downloaded from Foreman."
78
+ msgstr ""
79
+
62
80
  msgid "Path to directory containing iPXE images"
63
81
  msgstr ""
64
82
 
65
83
  msgid "Path to directory containing syslinux images"
66
84
  msgstr ""
67
85
 
86
+ msgid "Per-host images contain data about a particular host registered in Foreman and set up fully static networking, avoiding the requirement for DHCP. After networking is configured, they chainload from Foreman, picking up the current OS configuration and build state from the server."
87
+ msgstr ""
88
+
68
89
  msgid "Please ensure the ipxe-bootimgs and syslinux packages are installed."
69
90
  msgstr ""
70
91
 
@@ -77,9 +98,15 @@ msgstr ""
77
98
  msgid "Subnet (%s) has no primary DNS server defined"
78
99
  msgstr ""
79
100
 
101
+ msgid "The OS install continues using the installation media configured in Foreman, and it will typically configure static networking, depending on how the OS iPXE template is configured."
102
+ msgstr ""
103
+
80
104
  msgid "Unable to find template specified by %s setting"
81
105
  msgstr ""
82
106
 
107
+ 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."
108
+ msgstr ""
109
+
83
110
  msgid "iPXE template to use for generic host boot disks"
84
111
  msgstr ""
85
112
 
@@ -6,7 +6,7 @@
6
6
  # Dominic Cleal <dcleal@redhat.com>, 2014
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman_bootdisk 3.1.0\n"
9
+ "Project-Id-Version: foreman_bootdisk 3.1.1\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2014-08-08 13:53+0100\n"
12
12
  "PO-Revision-Date: 2014-08-09 08:59+0000\n"
@@ -6,11 +6,11 @@
6
6
  # Sergio Ocón <sergio@redhat.com>, 2014
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman_bootdisk 3.1.0\n"
9
+ "Project-Id-Version: foreman_bootdisk 3.1.1\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2014-08-08 13:53+0100\n"
12
- "PO-Revision-Date: 2014-08-09 08:59+0000\n"
13
- "Last-Translator: Lukáš Zapletal\n"
12
+ "PO-Revision-Date: 2014-08-28 10:12+0000\n"
13
+ "Last-Translator: Sergio Ocón <sergio@redhat.com>\n"
14
14
  "Language-Team: Spanish (http://www.transifex.com/projects/p/foreman/language/es/)\n"
15
15
  "MIME-Version: 1.0\n"
16
16
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,7 +22,7 @@ msgid "Boot disk"
22
22
  msgstr "Disco de arranque"
23
23
 
24
24
  msgid "Boot disks"
25
- msgstr ""
25
+ msgstr "Discos de arranque"
26
26
 
27
27
  msgid ""
28
28
  "Bootdisk is not supported with safemode rendering, please disable "
@@ -33,10 +33,10 @@ msgid "Command to generate ISO image, use genisoimage or mkisofs"
33
33
  msgstr "Comando para generar una imagen ISO, use genisoimage o mkisofs"
34
34
 
35
35
  msgid "Download generic image"
36
- msgstr ""
36
+ msgstr "Descargar imagen genérica"
37
37
 
38
38
  msgid "Download host image"
39
- msgstr ""
39
+ msgstr "Descargar imagen de host"
40
40
 
41
41
  msgid "Failed to render boot disk template: %s"
42
42
  msgstr "Fallo en la entrega de la plantilla del disco de arranque: %s"
@@ -7,7 +7,7 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: version 0.0.1\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2014-08-08 13:53+0100\n"
10
+ "POT-Creation-Date: 2014-09-03 12:20+0100\n"
11
11
  "PO-Revision-Date: 2014-02-13 12:09+0000\n"
12
12
  "Last-Translator: Dominic Cleal <dcleal@redhat.com>\n"
13
13
  "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
@@ -17,6 +17,12 @@ msgstr ""
17
17
  "Content-Transfer-Encoding: 8bit\n"
18
18
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
19
 
20
+ msgid "All images are usable as either ISOs or as disk images, including being written to a USB disk with `dd`."
21
+ msgstr ""
22
+
23
+ msgid "Back"
24
+ msgstr ""
25
+
20
26
  msgid "Boot disk"
21
27
  msgstr ""
22
28
 
@@ -41,6 +47,12 @@ msgstr ""
41
47
  msgid "Generic image"
42
48
  msgstr ""
43
49
 
50
+ 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."
51
+ msgstr ""
52
+
53
+ msgid "Help"
54
+ msgstr ""
55
+
44
56
  msgid "Host '%s' image"
45
57
  msgstr ""
46
58
 
@@ -53,18 +65,27 @@ msgstr ""
53
65
  msgid "Host has no subnet defined"
54
66
  msgstr ""
55
67
 
68
+ msgid "Host image"
69
+ msgstr ""
70
+
56
71
  msgid "ISO build failed"
57
72
  msgstr ""
58
73
 
59
74
  msgid "ISO hybrid conversion failed"
60
75
  msgstr ""
61
76
 
77
+ msgid "Once chainloaded, the OS bootloader and installer are downloaded directly from the installation media configured in Foreman, and the provisioning script (kickstart/preseed) is downloaded from Foreman."
78
+ msgstr ""
79
+
62
80
  msgid "Path to directory containing iPXE images"
63
81
  msgstr ""
64
82
 
65
83
  msgid "Path to directory containing syslinux images"
66
84
  msgstr ""
67
85
 
86
+ msgid "Per-host images contain data about a particular host registered in Foreman and set up fully static networking, avoiding the requirement for DHCP. After networking is configured, they chainload from Foreman, picking up the current OS configuration and build state from the server."
87
+ msgstr ""
88
+
68
89
  msgid "Please ensure the ipxe-bootimgs and syslinux packages are installed."
69
90
  msgstr ""
70
91
 
@@ -77,9 +98,15 @@ msgstr ""
77
98
  msgid "Subnet (%s) has no primary DNS server defined"
78
99
  msgstr ""
79
100
 
101
+ msgid "The OS install continues using the installation media configured in Foreman, and it will typically configure static networking, depending on how the OS iPXE template is configured."
102
+ msgstr ""
103
+
80
104
  msgid "Unable to find template specified by %s setting"
81
105
  msgstr ""
82
106
 
107
+ 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."
108
+ msgstr ""
109
+
83
110
  msgid "iPXE template to use for generic host boot disks"
84
111
  msgstr ""
85
112
 
@@ -7,7 +7,7 @@
7
7
  # Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_bootdisk 3.1.0\n"
10
+ "Project-Id-Version: foreman_bootdisk 3.1.1\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
12
  "POT-Creation-Date: 2014-08-08 13:53+0100\n"
13
13
  "PO-Revision-Date: 2014-08-19 15:21+0000\n"
@@ -5,7 +5,7 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_bootdisk 3.1.0\n"
8
+ "Project-Id-Version: foreman_bootdisk 3.1.1\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "POT-Creation-Date: 2014-08-08 13:53+0100\n"
11
11
  "PO-Revision-Date: 2014-08-09 08:59+0000\n"
@@ -6,11 +6,11 @@
6
6
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman_bootdisk 3.1.0\n"
9
+ "Project-Id-Version: foreman_bootdisk 3.1.1\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2014-08-08 13:53+0100\n"
12
- "PO-Revision-Date: 2014-08-09 08:59+0000\n"
13
- "Last-Translator: Lukáš Zapletal\n"
12
+ "PO-Revision-Date: 2014-08-26 11:41+0000\n"
13
+ "Last-Translator: johnny.westerlund <johnny.westerlund@gmail.com>\n"
14
14
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/foreman/language/sv_SE/)\n"
15
15
  "MIME-Version: 1.0\n"
16
16
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,7 +22,7 @@ msgid "Boot disk"
22
22
  msgstr "Startdisk"
23
23
 
24
24
  msgid "Boot disks"
25
- msgstr ""
25
+ msgstr "Startdiskar"
26
26
 
27
27
  msgid ""
28
28
  "Bootdisk is not supported with safemode rendering, please disable "
@@ -33,10 +33,10 @@ msgid "Command to generate ISO image, use genisoimage or mkisofs"
33
33
  msgstr "Kommando för att generera ISO-avbildningar, använd genisoimage eller mkisofs"
34
34
 
35
35
  msgid "Download generic image"
36
- msgstr ""
36
+ msgstr "Ladda ner generisk avbildning"
37
37
 
38
38
  msgid "Download host image"
39
- msgstr ""
39
+ msgstr "Ladda ner värd avbildning"
40
40
 
41
41
  msgid "Failed to render boot disk template: %s"
42
42
  msgstr "Misslyckades att tolka startdiskmallen: %s"
@@ -74,7 +74,7 @@ msgstr "Vär vänlig och säkerställ att ipxe-startavbildningarna och syslinux
74
74
  msgid ""
75
75
  "Plugin for Foreman that creates iPXE-based boot disks to provision hosts "
76
76
  "without the need for PXE infrastructure."
77
- msgstr ""
77
+ msgstr "Plugin för Foreman som skapar iPXE-baserad start disk för att provisionera värdar utan en existerande PXE-infrastruktur."
78
78
 
79
79
  msgid "Subnet (%s) has no gateway defined"
80
80
  msgstr "Subnät (%s) har ingen nätsluss definierad"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_bootdisk
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dominic Cleal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-20 00:00:00.000000000 Z
11
+ date: 2014-09-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Plugin for Foreman that creates iPXE-based boot disks to provision hosts
14
14
  without the need for PXE infrastructure.
@@ -33,6 +33,7 @@ files:
33
33
  - app/models/setting/bootdisk.rb
34
34
  - app/services/foreman_bootdisk/iso_generator.rb
35
35
  - app/services/foreman_bootdisk/renderer.rb
36
+ - app/views/foreman_bootdisk/disks/help.html.erb
36
37
  - app/views/foreman_bootdisk/generic_host.erb
37
38
  - app/views/foreman_bootdisk/host.erb
38
39
  - config/routes.rb