foreman_bootdisk 17.1.0 → 19.0.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 +4 -4
- data/README.md +2 -3
- data/app/controllers/foreman_bootdisk/api/v2/disks_controller.rb +7 -2
- data/app/controllers/foreman_bootdisk/disks_controller.rb +70 -21
- data/app/controllers/foreman_bootdisk/subnet_disks_controller.rb +41 -0
- data/app/helpers/bootdisk_links_helper.rb +46 -0
- data/app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb +30 -42
- data/app/helpers/concerns/foreman_bootdisk/pretty_error.rb +13 -0
- data/app/helpers/concerns/foreman_bootdisk/subnets_helper_ext.rb +45 -0
- data/app/helpers/disk_helper.rb +8 -0
- data/app/views/foreman_bootdisk/disks/help.html.erb +16 -4
- data/app/views/subnets/_bootdisk_action_buttons.erb +1 -0
- data/app/views/subnets/_bootdisk_title_buttons.erb +1 -0
- data/config/routes.rb +2 -1
- data/db/migrate/20140522185700_change_templatekind_to_bootdisk.rb +3 -3
- data/lib/foreman_bootdisk/engine.rb +11 -2
- data/lib/foreman_bootdisk/version.rb +1 -1
- data/locale/action_names.rb +2 -4
- data/locale/ca/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/ca/foreman_bootdisk.edit.po +393 -0
- data/locale/ca/foreman_bootdisk.po +47 -11
- data/locale/ca/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/de/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/de/foreman_bootdisk.edit.po +398 -0
- data/locale/de/foreman_bootdisk.po +63 -26
- data/locale/de/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/en/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/en/foreman_bootdisk.edit.po +388 -0
- data/locale/en/foreman_bootdisk.po +45 -9
- data/locale/en/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/en_GB/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/en_GB/foreman_bootdisk.edit.po +394 -0
- data/locale/en_GB/foreman_bootdisk.po +47 -11
- data/locale/en_GB/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/es/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/es/foreman_bootdisk.edit.po +394 -0
- data/locale/es/foreman_bootdisk.po +69 -32
- data/locale/es/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/foreman_bootdisk.pot +121 -63
- data/locale/fr/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/fr/foreman_bootdisk.edit.po +394 -0
- data/locale/fr/foreman_bootdisk.po +80 -43
- data/locale/fr/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/it/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/it/foreman_bootdisk.edit.po +391 -0
- data/locale/it/foreman_bootdisk.po +47 -11
- data/locale/it/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/ja/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/ja/foreman_bootdisk.edit.po +393 -0
- data/locale/ja/foreman_bootdisk.po +70 -33
- data/locale/ja/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/ko/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/ko/foreman_bootdisk.edit.po +390 -0
- data/locale/ko/foreman_bootdisk.po +47 -11
- data/locale/ko/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/pt_BR/foreman_bootdisk.edit.po +394 -0
- data/locale/pt_BR/foreman_bootdisk.po +79 -43
- data/locale/pt_BR/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/ru/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/ru/foreman_bootdisk.edit.po +395 -0
- data/locale/ru/foreman_bootdisk.po +47 -11
- data/locale/ru/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/sv_SE/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/sv_SE/foreman_bootdisk.edit.po +392 -0
- data/locale/sv_SE/foreman_bootdisk.po +47 -11
- data/locale/sv_SE/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/zh_CN/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/zh_CN/foreman_bootdisk.edit.po +391 -0
- data/locale/zh_CN/foreman_bootdisk.po +113 -77
- data/locale/zh_CN/foreman_bootdisk.po.time_stamp +0 -0
- data/locale/zh_TW/LC_MESSAGES/foreman_bootdisk.mo +0 -0
- data/locale/zh_TW/foreman_bootdisk.edit.po +391 -0
- data/locale/zh_TW/foreman_bootdisk.po +47 -11
- data/locale/zh_TW/foreman_bootdisk.po.time_stamp +0 -0
- data/package.json +42 -0
- data/webpack/__mocks__/foremanReact/common/HOC.js +30 -0
- data/webpack/__mocks__/foremanReact/common/I18n.js +7 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +7 -0
- data/webpack/__mocks__/foremanReact/common/urlHelpers.js +8 -0
- data/webpack/__mocks__/foremanReact/constants.js +24 -0
- data/webpack/__mocks__/foremanReact/redux/API/APISelectors.js +6 -0
- data/webpack/__mocks__/foremanReact/redux/API/index.js +10 -0
- data/webpack/global_index.js +12 -0
- data/webpack/global_test_setup.js +11 -0
- data/webpack/index.js +0 -0
- data/webpack/src/extensions/constants.js +2 -0
- data/webpack/src/extensions/host/HostBootdiskButtons.js +71 -0
- data/webpack/src/extensions/host/HostBootdiskButtonsSelectors.js +27 -0
- data/webpack/src/extensions/host/__tests__/HostBootdiskButtonsSelectors.test.js +66 -0
- data/webpack/src/extensions/host/__tests__/__snapshots__/HostBootdiskButtonsSelectors.test.js.snap +30 -0
- metadata +54 -20
- data/.github/workflows/rubocop.yaml +0 -19
- data/.tx/config +0 -8
- data/AUTHORS +0 -34
- data/release-gem +0 -84
- data/test/functional/foreman_bootdisk/api/v2/disks_controller_test.rb +0 -97
- data/test/functional/foreman_bootdisk/api/v2/subnet_disks_controller_test.rb +0 -37
- data/test/functional/foreman_bootdisk/disks_controller_test.rb +0 -107
- data/test/models/host/managed_test.rb +0 -26
- data/test/test_plugin_helper.rb +0 -72
- data/test/unit/access_permissions_test.rb +0 -10
- data/test/unit/concerns/compute_resources/vmware_test.rb +0 -83
- data/test/unit/concerns/host_test.rb +0 -84
- data/test/unit/concerns/orchestration/compute_test.rb +0 -69
- data/test/unit/foreman_bootdisk/renderer_test.rb +0 -36
- data/test/unit/foreman_bootdisk/scope/bootdisk_test.rb +0 -31
- data/test/unit/foreman_bootdisk/scope/full_host_bootdisk_test.rb +0 -30
- data/test/unit/iso_generator_test.rb +0 -74
data/locale/foreman_bootdisk.pot
CHANGED
|
@@ -8,8 +8,8 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: foreman_bootdisk 1.0.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date:
|
|
12
|
-
"PO-Revision-Date:
|
|
11
|
+
"POT-Creation-Date: 2021-11-30 18:05+0100\n"
|
|
12
|
+
"PO-Revision-Date: 2021-11-30 18:05+0100\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
15
15
|
"Language: \n"
|
|
@@ -18,76 +18,100 @@ msgstr ""
|
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
19
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
|
20
20
|
|
|
21
|
-
#: ../app/controllers/
|
|
21
|
+
#: ../app/controllers/concerns/allowed_actions.rb:7
|
|
22
|
+
msgid "This type of bootdisk is not allowed. Please contact administrator."
|
|
23
|
+
msgstr ""
|
|
24
|
+
|
|
25
|
+
#: ../app/controllers/foreman_bootdisk/api/v2/disks_controller.rb:21
|
|
22
26
|
#: ../app/views/foreman_bootdisk/disks/help.html.erb:1
|
|
23
27
|
msgid "Boot disks"
|
|
24
28
|
msgstr ""
|
|
25
29
|
|
|
26
|
-
#: ../app/controllers/foreman_bootdisk/api/v2/disks_controller.rb:
|
|
30
|
+
#: ../app/controllers/foreman_bootdisk/api/v2/disks_controller.rb:24
|
|
27
31
|
msgid "Download generic image"
|
|
28
32
|
msgstr ""
|
|
29
33
|
|
|
30
|
-
#: ../app/controllers/foreman_bootdisk/api/v2/disks_controller.rb:
|
|
34
|
+
#: ../app/controllers/foreman_bootdisk/api/v2/disks_controller.rb:33
|
|
31
35
|
msgid "Download host image"
|
|
32
36
|
msgstr ""
|
|
33
37
|
|
|
34
|
-
#: ../app/controllers/foreman_bootdisk/api/v2/disks_controller.rb:
|
|
38
|
+
#: ../app/controllers/foreman_bootdisk/api/v2/disks_controller.rb:34
|
|
35
39
|
msgid "True for full, false for basic reusable image"
|
|
36
40
|
msgstr ""
|
|
37
41
|
|
|
38
|
-
#: ../app/controllers/foreman_bootdisk/api/v2/
|
|
39
|
-
|
|
42
|
+
#: ../app/controllers/foreman_bootdisk/api/v2/disks_controller.rb:46
|
|
43
|
+
#: ../app/controllers/foreman_bootdisk/disks_controller.rb:126
|
|
44
|
+
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:90
|
|
45
|
+
msgid "Host is not in build mode"
|
|
40
46
|
msgstr ""
|
|
41
47
|
|
|
42
48
|
#: ../app/controllers/foreman_bootdisk/api/v2/subnet_disks_controller.rb:23
|
|
49
|
+
msgid "Subnet boot disks"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#: ../app/controllers/foreman_bootdisk/api/v2/subnet_disks_controller.rb:26
|
|
43
53
|
msgid "Download subnet generic image"
|
|
44
54
|
msgstr ""
|
|
45
55
|
|
|
46
|
-
#: ../app/controllers/foreman_bootdisk/api/v2/subnet_disks_controller.rb:
|
|
47
|
-
#: ../app/controllers/foreman_bootdisk/
|
|
56
|
+
#: ../app/controllers/foreman_bootdisk/api/v2/subnet_disks_controller.rb:30
|
|
57
|
+
#: ../app/controllers/foreman_bootdisk/subnet_disks_controller.rb:15
|
|
48
58
|
msgid "TFTP feature not enabled for subnet %s"
|
|
49
59
|
msgstr ""
|
|
50
60
|
|
|
51
|
-
#: ../app/controllers/foreman_bootdisk/disks_controller.rb:
|
|
52
|
-
msgid "
|
|
61
|
+
#: ../app/controllers/foreman_bootdisk/disks_controller.rb:63
|
|
62
|
+
msgid "Host is not in build mode."
|
|
53
63
|
msgstr ""
|
|
54
64
|
|
|
55
|
-
#: ../app/controllers/foreman_bootdisk/disks_controller.rb:
|
|
65
|
+
#: ../app/controllers/foreman_bootdisk/disks_controller.rb:95
|
|
66
|
+
#: ../app/helpers/concerns/foreman_bootdisk/pretty_error.rb:8
|
|
56
67
|
msgid "Failed to render boot disk template"
|
|
57
68
|
msgstr ""
|
|
58
69
|
|
|
59
|
-
#: ../app/
|
|
60
|
-
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:
|
|
61
|
-
#: ../app/models/setting/bootdisk.rb:29
|
|
62
|
-
msgid "Boot disk"
|
|
63
|
-
msgstr ""
|
|
64
|
-
|
|
65
|
-
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:12
|
|
70
|
+
#: ../app/controllers/foreman_bootdisk/disks_controller.rb:120
|
|
71
|
+
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:66
|
|
66
72
|
msgid "Host '%s' image"
|
|
67
73
|
msgstr ""
|
|
68
74
|
|
|
69
|
-
#: ../app/
|
|
75
|
+
#: ../app/controllers/foreman_bootdisk/disks_controller.rb:120
|
|
76
|
+
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:76
|
|
77
|
+
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:86
|
|
70
78
|
msgid "Full host '%s' image"
|
|
71
79
|
msgstr ""
|
|
72
80
|
|
|
73
|
-
#: ../app/
|
|
74
|
-
|
|
75
|
-
msgid "Generic image"
|
|
81
|
+
#: ../app/controllers/foreman_bootdisk/disks_controller.rb:132
|
|
82
|
+
msgid "Boot disk help"
|
|
76
83
|
msgstr ""
|
|
77
84
|
|
|
78
|
-
#: ../app/helpers/
|
|
79
|
-
msgid "Help"
|
|
85
|
+
#: ../app/helpers/bootdisk_links_helper.rb:27
|
|
86
|
+
msgid "Boot disk Help"
|
|
80
87
|
msgstr ""
|
|
81
88
|
|
|
82
|
-
#: ../app/helpers/
|
|
89
|
+
#: ../app/helpers/bootdisk_links_helper.rb:40
|
|
90
|
+
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:20
|
|
91
|
+
#: ../app/models/setting/bootdisk.rb:30
|
|
92
|
+
#: ../webpack/src/extensions/host/HostBootdiskButtons.js:65
|
|
93
|
+
msgid "Boot disk"
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
96
|
+
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:21
|
|
97
|
+
#: ../webpack/src/extensions/host/HostBootdiskButtons.js:54
|
|
83
98
|
msgid "Boot disk download not available for %s architecture"
|
|
84
99
|
msgstr ""
|
|
85
100
|
|
|
86
|
-
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:
|
|
101
|
+
#: ../app/helpers/concerns/foreman_bootdisk/hosts_helper_ext.rb:30
|
|
87
102
|
msgid "Subnet '%s' generic image"
|
|
88
103
|
msgstr ""
|
|
89
104
|
|
|
90
|
-
#: ../app/
|
|
105
|
+
#: ../app/helpers/concerns/foreman_bootdisk/subnets_helper_ext.rb:10
|
|
106
|
+
msgid "Subnet generic image"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
109
|
+
#: ../app/helpers/concerns/foreman_bootdisk/subnets_helper_ext.rb:27
|
|
110
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:35
|
|
111
|
+
msgid "Generic image"
|
|
112
|
+
msgstr ""
|
|
113
|
+
|
|
114
|
+
#: ../app/models/concerns/foreman_bootdisk/host_ext.rb:12
|
|
91
115
|
#: ../app/services/foreman_bootdisk/renderer.rb:53
|
|
92
116
|
#: ../app/services/foreman_bootdisk/renderer.rb:60
|
|
93
117
|
msgid "Unable to find template specified by %s setting"
|
|
@@ -109,19 +133,19 @@ msgstr ""
|
|
|
109
133
|
msgid "Detach ISO image from CDROM drive for %s"
|
|
110
134
|
msgstr ""
|
|
111
135
|
|
|
112
|
-
#: ../app/models/concerns/foreman_bootdisk/orchestration/compute.rb:
|
|
136
|
+
#: ../app/models/concerns/foreman_bootdisk/orchestration/compute.rb:73
|
|
113
137
|
msgid "Failed to generate ISO image for instance %{name}: %{message}"
|
|
114
138
|
msgstr ""
|
|
115
139
|
|
|
116
|
-
#: ../app/models/concerns/foreman_bootdisk/orchestration/compute.rb:
|
|
140
|
+
#: ../app/models/concerns/foreman_bootdisk/orchestration/compute.rb:82
|
|
117
141
|
msgid "Failed to upload ISO image for instance %{name}: %{message}"
|
|
118
142
|
msgstr ""
|
|
119
143
|
|
|
120
|
-
#: ../app/models/concerns/foreman_bootdisk/orchestration/compute.rb:
|
|
144
|
+
#: ../app/models/concerns/foreman_bootdisk/orchestration/compute.rb:91
|
|
121
145
|
msgid "Failed to attach ISO image to CDROM drive of instance %{name}: %{message}"
|
|
122
146
|
msgstr ""
|
|
123
147
|
|
|
124
|
-
#: ../app/models/concerns/foreman_bootdisk/orchestration/compute.rb:
|
|
148
|
+
#: ../app/models/concerns/foreman_bootdisk/orchestration/compute.rb:100
|
|
125
149
|
msgid "Failed to detach ISO image from CDROM drive of instance %{name}: %{message}"
|
|
126
150
|
msgstr ""
|
|
127
151
|
|
|
@@ -197,54 +221,60 @@ msgstr ""
|
|
|
197
221
|
msgid "Installation media caching"
|
|
198
222
|
msgstr ""
|
|
199
223
|
|
|
200
|
-
#: ../app/
|
|
224
|
+
#: ../app/models/setting/bootdisk.rb:25
|
|
225
|
+
msgid "List of allowed bootdisk types, remove type to disable it"
|
|
226
|
+
msgstr ""
|
|
227
|
+
|
|
228
|
+
#: ../app/models/setting/bootdisk.rb:25
|
|
229
|
+
msgid "Allowed bootdisk types"
|
|
230
|
+
msgstr ""
|
|
231
|
+
|
|
232
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:16
|
|
201
233
|
msgid "Host is not in build mode, so the template cannot be rendered"
|
|
202
234
|
msgstr ""
|
|
203
235
|
|
|
204
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
236
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:42
|
|
205
237
|
msgid "Unable to generate disk template, %{kind} template not found."
|
|
206
238
|
msgstr ""
|
|
207
239
|
|
|
208
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
240
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:52
|
|
209
241
|
msgid "Unable to generate disk %{kind} template: %{error}"
|
|
210
242
|
msgstr ""
|
|
211
243
|
|
|
212
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
244
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:94
|
|
213
245
|
msgid "Please ensure the isolinux/syslinux package(s) are installed."
|
|
214
246
|
msgstr ""
|
|
215
247
|
|
|
216
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
248
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:111
|
|
217
249
|
msgid "Please ensure the ipxe-bootimgs package is installed."
|
|
218
250
|
msgstr ""
|
|
219
251
|
|
|
220
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
252
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:128
|
|
221
253
|
msgid "Creating new image failed, install truncate utility"
|
|
222
254
|
msgstr ""
|
|
223
255
|
|
|
224
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
256
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:129
|
|
225
257
|
msgid "Failed to format the ESP image via mkfs.msdos"
|
|
226
258
|
msgstr ""
|
|
227
259
|
|
|
228
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
229
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
260
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:130
|
|
261
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:131
|
|
230
262
|
msgid "Failed to create a directory within the ESP image"
|
|
231
263
|
msgstr ""
|
|
232
264
|
|
|
233
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
234
|
-
msgid ""
|
|
235
|
-
"Ensure %{path} contains grubx64.efi and shimx64.efi: install TFTP module or co"
|
|
236
|
-
"py those files into /var/lib/foreman/bootdisk (Grub2 directory setting)"
|
|
265
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:137
|
|
266
|
+
msgid "Ensure %{file} is readable (or update \"Grub2 directory\" setting)"
|
|
237
267
|
msgstr ""
|
|
238
268
|
|
|
239
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
240
|
-
msgid "Unable to mcopy %{
|
|
269
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:138
|
|
270
|
+
msgid "Unable to mcopy %{file}"
|
|
241
271
|
msgstr ""
|
|
242
272
|
|
|
243
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
273
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:160
|
|
244
274
|
msgid "ISO build failed"
|
|
245
275
|
msgstr ""
|
|
246
276
|
|
|
247
|
-
#: ../app/services/foreman_bootdisk/iso_generator.rb:
|
|
277
|
+
#: ../app/services/foreman_bootdisk/iso_generator.rb:163
|
|
248
278
|
msgid "ISO hybrid conversion failed: %s"
|
|
249
279
|
msgstr ""
|
|
250
280
|
|
|
@@ -266,10 +296,18 @@ msgid ""
|
|
|
266
296
|
msgstr ""
|
|
267
297
|
|
|
268
298
|
#: ../app/views/foreman_bootdisk/disks/help.html.erb:12
|
|
269
|
-
msgid "Host
|
|
299
|
+
msgid "Host images"
|
|
270
300
|
msgstr ""
|
|
271
301
|
|
|
272
302
|
#: ../app/views/foreman_bootdisk/disks/help.html.erb:14
|
|
303
|
+
msgid "These images are used for host. You can find them at host detail page."
|
|
304
|
+
msgstr ""
|
|
305
|
+
|
|
306
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:17
|
|
307
|
+
msgid "Host image"
|
|
308
|
+
msgstr ""
|
|
309
|
+
|
|
310
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:19
|
|
273
311
|
msgid ""
|
|
274
312
|
"Per-host images contain data about a particular host registered in Foreman and"
|
|
275
313
|
" set up fully static networking, avoiding the requirement for DHCP. After net"
|
|
@@ -277,18 +315,18 @@ msgid ""
|
|
|
277
315
|
"configuration and build state from the server."
|
|
278
316
|
msgstr ""
|
|
279
317
|
|
|
280
|
-
#: ../app/views/foreman_bootdisk/disks/help.html.erb:
|
|
318
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:22
|
|
281
319
|
msgid ""
|
|
282
320
|
"Once chainloaded, the OS bootloader and installer are downloaded directly from"
|
|
283
321
|
" the installation media configured in Foreman, and the provisioning script (ki"
|
|
284
322
|
"ckstart/preseed) is downloaded from Foreman."
|
|
285
323
|
msgstr ""
|
|
286
324
|
|
|
287
|
-
#: ../app/views/foreman_bootdisk/disks/help.html.erb:
|
|
325
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:25
|
|
288
326
|
msgid "Full host image"
|
|
289
327
|
msgstr ""
|
|
290
328
|
|
|
291
|
-
#: ../app/views/foreman_bootdisk/disks/help.html.erb:
|
|
329
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:27
|
|
292
330
|
msgid ""
|
|
293
331
|
"A variant of the per-host image which contains the OS bootloader embedded insi"
|
|
294
332
|
"de the disk. This may be useful if chainloading fails on certain hardware, bu"
|
|
@@ -296,35 +334,51 @@ msgid ""
|
|
|
296
334
|
", bootloader or PXELinux templates."
|
|
297
335
|
msgstr ""
|
|
298
336
|
|
|
299
|
-
#: ../app/views/foreman_bootdisk/disks/help.html.erb:
|
|
337
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:30
|
|
338
|
+
msgid "Generic images"
|
|
339
|
+
msgstr ""
|
|
340
|
+
|
|
341
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:32
|
|
342
|
+
msgid ""
|
|
343
|
+
"These images are more generic than previous images. You can find them at subne"
|
|
344
|
+
"t index page."
|
|
345
|
+
msgstr ""
|
|
346
|
+
|
|
347
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:37
|
|
300
348
|
msgid ""
|
|
301
349
|
"Generic images are a reusable disk image that works for any host registered in"
|
|
302
350
|
" Foreman. It requires a basic DHCP and DNS service to function and contact th"
|
|
303
351
|
"e server, but does not require DHCP reservations or static IP addresses."
|
|
304
352
|
msgstr ""
|
|
305
353
|
|
|
306
|
-
#: ../app/views/foreman_bootdisk/disks/help.html.erb:
|
|
354
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:40
|
|
307
355
|
msgid ""
|
|
308
356
|
"The OS install continues using the installation media configured in Foreman, a"
|
|
309
357
|
"nd it will typically configure static networking, depending on how the OS iPXE"
|
|
310
358
|
" template is configured."
|
|
311
359
|
msgstr ""
|
|
312
360
|
|
|
313
|
-
#: ../app/views/foreman_bootdisk/disks/help.html.erb:
|
|
361
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:43
|
|
314
362
|
msgid "Subnet image"
|
|
315
363
|
msgstr ""
|
|
316
364
|
|
|
317
|
-
#: ../app/views/foreman_bootdisk/disks/help.html.erb:
|
|
365
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:45
|
|
318
366
|
msgid ""
|
|
319
367
|
"Subnet images are similar to generic images, but chain-loading is done via the"
|
|
320
368
|
" TFTP Smart Proxy assigned to the Subnet of the host. The smart proxy must hav"
|
|
321
369
|
"e the \"Templates\" module enabled and configured."
|
|
322
370
|
msgstr ""
|
|
323
371
|
|
|
324
|
-
#: ../app/views/foreman_bootdisk/disks/help.html.erb:
|
|
372
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:48
|
|
325
373
|
msgid "This image is generic for all hosts with a provisioning NIC on that subnet."
|
|
326
374
|
msgstr ""
|
|
327
375
|
|
|
376
|
+
#: ../app/views/foreman_bootdisk/disks/help.html.erb:51
|
|
377
|
+
msgid ""
|
|
378
|
+
"* - These bootdisk types were disabled, you can enable them in Administer - Se"
|
|
379
|
+
"ttings."
|
|
380
|
+
msgstr ""
|
|
381
|
+
|
|
328
382
|
#: ../app/views/foreman_bootdisk/host.erb:9
|
|
329
383
|
msgid "Host has no provisioning interface defined"
|
|
330
384
|
msgstr ""
|
|
@@ -349,24 +403,28 @@ msgstr ""
|
|
|
349
403
|
msgid "Both IP and Subnet must be set"
|
|
350
404
|
msgstr ""
|
|
351
405
|
|
|
352
|
-
#: ../lib/foreman_bootdisk/engine.rb:
|
|
406
|
+
#: ../lib/foreman_bootdisk/engine.rb:60
|
|
353
407
|
msgid "Boot disk based"
|
|
354
408
|
msgstr ""
|
|
355
409
|
|
|
356
|
-
#: ../lib/foreman_bootdisk/engine.rb:
|
|
410
|
+
#: ../lib/foreman_bootdisk/engine.rb:61
|
|
357
411
|
msgid "Boot disk embedded template"
|
|
358
412
|
msgstr ""
|
|
359
413
|
|
|
414
|
+
#: ../webpack/src/extensions/host/HostBootdiskButtons.js:59
|
|
415
|
+
msgid "Not available"
|
|
416
|
+
msgstr ""
|
|
417
|
+
|
|
360
418
|
#: action_names.rb:2
|
|
361
419
|
msgid "Remote action:"
|
|
362
420
|
msgstr ""
|
|
363
421
|
|
|
364
422
|
#: action_names.rb:3
|
|
365
|
-
msgid "Import
|
|
423
|
+
msgid "Import Puppet classes"
|
|
366
424
|
msgstr ""
|
|
367
425
|
|
|
368
426
|
#: action_names.rb:4
|
|
369
|
-
msgid "Import
|
|
427
|
+
msgid "Import facts"
|
|
370
428
|
msgstr ""
|
|
371
429
|
|
|
372
430
|
#: action_names.rb:5
|
|
Binary file
|