foreman_salt 13.1.0 → 13.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -0
  3. data/app/controllers/foreman_salt/api/v2/jobs_controller.rb +3 -0
  4. data/app/controllers/foreman_salt/api/v2/salt_variables_controller.rb +1 -2
  5. data/app/controllers/foreman_salt/minions_controller.rb +1 -0
  6. data/db/seeds.d/75-salt_seeds.rb +0 -11
  7. data/db/seeds.d/76-job_templates.rb +2 -2
  8. data/lib/foreman_salt/extensions.rb +1 -1
  9. data/lib/foreman_salt/plugin.rb +5 -0
  10. data/lib/foreman_salt/version.rb +1 -1
  11. data/locale/action_names.rb +2 -1
  12. data/locale/ca/LC_MESSAGES/foreman_salt.mo +0 -0
  13. data/locale/ca/foreman_salt.po +541 -0
  14. data/locale/cs_CZ/LC_MESSAGES/foreman_salt.mo +0 -0
  15. data/locale/cs_CZ/foreman_salt.po +541 -0
  16. data/locale/de/LC_MESSAGES/foreman_salt.mo +0 -0
  17. data/locale/de/foreman_salt.edit.po +256 -88
  18. data/locale/de/foreman_salt.po +170 -41
  19. data/locale/en/LC_MESSAGES/foreman_salt.mo +0 -0
  20. data/locale/en/foreman_salt.edit.po +213 -22
  21. data/locale/en/foreman_salt.po +144 -18
  22. data/locale/en_GB/LC_MESSAGES/foreman_salt.mo +0 -0
  23. data/locale/en_GB/foreman_salt.po +541 -0
  24. data/locale/es/LC_MESSAGES/foreman_salt.mo +0 -0
  25. data/locale/es/foreman_salt.po +541 -0
  26. data/locale/foreman_salt.pot +231 -45
  27. data/locale/fr/LC_MESSAGES/foreman_salt.mo +0 -0
  28. data/locale/fr/foreman_salt.po +541 -0
  29. data/locale/gl/LC_MESSAGES/foreman_salt.mo +0 -0
  30. data/locale/gl/foreman_salt.po +541 -0
  31. data/locale/it/LC_MESSAGES/foreman_salt.mo +0 -0
  32. data/locale/it/foreman_salt.po +541 -0
  33. data/locale/ja/LC_MESSAGES/foreman_salt.mo +0 -0
  34. data/locale/ja/foreman_salt.po +541 -0
  35. data/locale/ko/LC_MESSAGES/foreman_salt.mo +0 -0
  36. data/locale/ko/foreman_salt.po +541 -0
  37. data/locale/nl_NL/LC_MESSAGES/foreman_salt.mo +0 -0
  38. data/locale/nl_NL/foreman_salt.po +541 -0
  39. data/locale/pl/LC_MESSAGES/foreman_salt.mo +0 -0
  40. data/locale/pl/foreman_salt.po +542 -0
  41. data/locale/pt_BR/LC_MESSAGES/foreman_salt.mo +0 -0
  42. data/locale/pt_BR/foreman_salt.po +541 -0
  43. data/locale/ru/LC_MESSAGES/foreman_salt.mo +0 -0
  44. data/locale/ru/foreman_salt.po +542 -0
  45. data/locale/sv_SE/LC_MESSAGES/foreman_salt.mo +0 -0
  46. data/locale/sv_SE/foreman_salt.po +541 -0
  47. data/locale/zh_CN/LC_MESSAGES/foreman_salt.mo +0 -0
  48. data/locale/zh_CN/foreman_salt.po +541 -0
  49. data/locale/zh_TW/LC_MESSAGES/foreman_salt.mo +0 -0
  50. data/locale/zh_TW/foreman_salt.po +541 -0
  51. data/test/functional/minions_controller_test.rb +51 -15
  52. metadata +38 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dce5a18cef1f569ee315e5260928b43cc24a059b895f6cf2c4bbc6c98592cac8
4
- data.tar.gz: 864b8551057471a940a44b5d0447502040558fc0b697339a7ca28a09f1256203
3
+ metadata.gz: fddee03aa8a25bb479f486dff933348cd4d2ecd5f58acfd3a24b0f41e42add81
4
+ data.tar.gz: fd3936b47b815c6dde269e4b1a31c31688f32654d77b134d64fec3f9a001c279
5
5
  SHA512:
6
- metadata.gz: d4ed7429fd288b8d07677e7bc28091262c5acc2f751fc511fa0a4b223bb8e9b257177a91098b94ef0e68dd660e704fbbe70ec37e0135d04a8e8a2ff6d9507445
7
- data.tar.gz: 82aa1176e433e8223e8ceb8003bfc22eb2d207ada21cdfd0e98a106e78ec7338f484db96fa315a303757a910b91d65247f7edbb66719090570c69397b8a2d9b6
6
+ metadata.gz: 0cc753435d43457397cab17d476c9bd35a411ce11835f33e664b3032efe847332762e8b1b28efc3f97051cd7015bb0b99662aae6502ad52c3c8f232f62d6029c
7
+ data.tar.gz: 9840624a4241c66a91314f1a5a4eff96dada377aa0bf7b33bcb9d928143ed795978b6f874d6e444f4678c1d623e13e5b53601734ad08180fcbc320c3eb9d8780
data/README.md CHANGED
@@ -14,6 +14,9 @@ This plug-in adds support for Salt to Foreman.
14
14
  | <= 1.16 | 10.0.0 |
15
15
  | >= 1.17 | 10.1.0 |
16
16
  | >= 1.21 | 10.2.0 |
17
+ | >= 1.22 | 10.3.1 |
18
+ | >= 1.23 | 11.0.1 |
19
+ | >= 1.24 | 13.2.0 |
17
20
 
18
21
  ## Documentation
19
22
 
@@ -7,6 +7,9 @@ module ForemanSalt
7
7
  include ::Foreman::Controller::SmartProxyAuth
8
8
  add_smart_proxy_filters :upload, :features => 'Salt'
9
9
 
10
+ include ::Foreman::Controller::FilterParameters
11
+ filter_parameters :job
12
+
10
13
  def_param_group :job do
11
14
  param :job, Hash, :required => true, :action_aware => true do
12
15
  param :job_id, Integer, :required => true, :desc => N_('JID')
@@ -6,7 +6,6 @@ module ForemanSalt
6
6
  # API controller for Salt Variables
7
7
  class SaltVariablesController < ::ForemanSalt::Api::V2::BaseController
8
8
  include ::ForemanSalt::Concerns::SaltVariableParameters
9
- include Foreman::Controller::Parameters::VariableLookupKey
10
9
 
11
10
  wrap_parameters :salt_variable, :include => salt_variable_params_filter.accessible_attributes(parameter_filter_context) + ['salt_state_id']
12
11
  before_action :find_resource, :only => [:show, :destroy, :update]
@@ -58,7 +57,7 @@ module ForemanSalt
58
57
  param_group :salt_variable, :as => :update
59
58
 
60
59
  def update
61
- @salt_variable.update!(variable_lookup_key_params)
60
+ @salt_variable.update!(salt_variable_params)
62
61
  render 'foreman_salt/api/v2/salt_variables/show'
63
62
  end
64
63
 
@@ -12,6 +12,7 @@ module ForemanSalt
12
12
  enc['classes'] = @minion.salt_modules_for_enc
13
13
 
14
14
  pillars = @minion.info['parameters']
15
+ pillars['saltenv'] = env
15
16
  pillars.merge!(@minion.salt_params)
16
17
 
17
18
  enc['parameters'] = Setting[:salt_namespace_pillars] ? { 'foreman' => pillars } : pillars
@@ -1,13 +1,2 @@
1
1
  # Create feature for Smart Proxy
2
2
  Feature.where(:name => 'Salt').first_or_create
3
-
4
- # Add new viewing permissions to Viewer role
5
- viewer = Role.find_by_name('Viewer')
6
-
7
- if viewer
8
- Permission.where(:name => [:view_smart_proxies_salt_keys, :view_smart_proxies_salt_autosign, :view_salt_modules]).each do |permission|
9
- viewer.ignore_locking do
10
- viewer.add_permissions!([permission.name]) unless viewer.permissions.include? permission
11
- end
12
- end
13
- end
@@ -22,8 +22,8 @@ if ForemanSalt.with_remote_execution?
22
22
  :default => true,
23
23
  :locked => true,
24
24
  :update => sync)
25
- template.organizations = organizations if SETTINGS[:organizations_enabled] && template.present?
26
- template.locations = locations if SETTINGS[:locations_enabled] && template.present?
25
+ template.organizations = organizations if template.present?
26
+ template.locations = locations if template.present?
27
27
  end
28
28
  end
29
29
  end
@@ -1,5 +1,5 @@
1
1
  begin
2
- ::FactImporter.register_fact_importer(:foreman_salt, ForemanSalt::FactImporter)
2
+ ::Foreman::Plugin.fact_importer_registry.register(:foreman_salt, ForemanSalt::FactImporter)
3
3
  ::FactParser.register_fact_parser(:foreman_salt, ForemanSalt::FactParser)
4
4
 
5
5
  # Helper Extensions
@@ -165,6 +165,11 @@ Foreman::Plugin.register :foreman_salt do
165
165
  :create_salt_variables, :view_salt_variables,
166
166
  :edit_salt_variables, :destroy_salt_variables]
167
167
 
168
+ role 'Salt viewer', [:view_smart_proxies_salt_keys,
169
+ :view_smart_proxies_salt_autosign,
170
+ :view_salt_variables,
171
+ :view_salt_environments,
172
+ :view_salt_modules]
168
173
 
169
174
  # Parameter filters
170
175
  parameter_filter Hostgroup,
@@ -1,3 +1,3 @@
1
1
  module ForemanSalt
2
- VERSION = '13.1.0'
2
+ VERSION = '13.2.4'
3
3
  end
@@ -1,4 +1,5 @@
1
1
  # Autogenerated!
2
2
  _("Action with sub plans")
3
3
  _("Import facts")
4
- _("Import Puppet classes")
4
+ _("Import Puppet classes")
5
+ _("Remote action:")
@@ -0,0 +1,541 @@
1
+ # Catalan translations for foreman_salt package.
2
+ # Copyright (C) 2020 THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_salt package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: foreman_salt 1.0.0\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "PO-Revision-Date: 2020-05-11 18:53+0530\n"
11
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12
+ "Language-Team: Catalan\n"
13
+ "Language: ca\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "\n"
19
+
20
+ msgid "*Clear environment*"
21
+ msgstr ""
22
+
23
+ msgid "Accept"
24
+ msgstr ""
25
+
26
+ msgid "Accepted"
27
+ msgstr ""
28
+
29
+ msgid "Action with sub plans"
30
+ msgstr ""
31
+
32
+ msgid "Actions"
33
+ msgstr ""
34
+
35
+ msgid "Added"
36
+ msgstr ""
37
+
38
+ msgid "Array of State ids"
39
+ msgstr ""
40
+
41
+ msgid "Autosign"
42
+ msgstr ""
43
+
44
+ msgid "Autosign entries for %s"
45
+ msgstr ""
46
+
47
+ msgid "Autosign record"
48
+ msgstr ""
49
+
50
+ msgid "Avoid duplicate values when merging them (only array type)?"
51
+ msgstr ""
52
+
53
+ msgid "Before including these variables as Salt pillar, Foreman will validate that your variables comply with the validation."
54
+ msgstr ""
55
+
56
+ msgid "Cancel"
57
+ msgstr ""
58
+
59
+ msgid "Change Salt Environment"
60
+ msgstr ""
61
+
62
+ msgid "Change Salt Master"
63
+ msgstr ""
64
+
65
+ msgid "Check/Uncheck Added"
66
+ msgstr ""
67
+
68
+ msgid "Check/Uncheck All"
69
+ msgstr ""
70
+
71
+ msgid "Check/Uncheck Removed"
72
+ msgstr ""
73
+
74
+ msgid "Continue to look for matches after first find (only array/hash type)? Note: merging overrides ignores all matchers that are omitted."
75
+ msgstr ""
76
+
77
+ msgid "Could not find salt environment with id %s"
78
+ msgstr ""
79
+
80
+ msgid "Create Salt Variable"
81
+ msgstr ""
82
+
83
+ msgid "Create Salt variable"
84
+ msgstr ""
85
+
86
+ msgid "Create a Salt environment"
87
+ msgstr ""
88
+
89
+ msgid "Create a state"
90
+ msgstr ""
91
+
92
+ msgid "Create an autosign record"
93
+ msgstr ""
94
+
95
+ msgid "Default Behavior"
96
+ msgstr ""
97
+
98
+ msgid "Default value of variable"
99
+ msgstr ""
100
+
101
+ msgid "Delete %s?"
102
+ msgstr ""
103
+
104
+ msgid "Delete a Salt Key"
105
+ msgstr ""
106
+
107
+ msgid "Delete an autosign record"
108
+ msgstr ""
109
+
110
+ msgid "Deletes Salt variable"
111
+ msgstr ""
112
+
113
+ msgid "Description of variable"
114
+ msgstr ""
115
+
116
+ msgid "Destroy a Salt environment"
117
+ msgstr ""
118
+
119
+ msgid "Destroy a state"
120
+ msgstr ""
121
+
122
+ msgid "Dryrun only"
123
+ msgstr ""
124
+
125
+ msgid "Edit"
126
+ msgstr ""
127
+
128
+ msgid "Edit %s"
129
+ msgstr ""
130
+
131
+ msgid "Edit Salt Environment %s"
132
+ msgstr ""
133
+
134
+ msgid "Edit Salt State %s"
135
+ msgstr ""
136
+
137
+ msgid "Edit Salt Variable"
138
+ msgstr ""
139
+
140
+ msgid "Environment"
141
+ msgstr ""
142
+
143
+ msgid "Environments"
144
+ msgstr ""
145
+
146
+ msgid "FQDN of host that key belongs to"
147
+ msgstr ""
148
+
149
+ msgid "Failed to execute state.highstate: %s"
150
+ msgstr ""
151
+
152
+ msgid "Filter %s"
153
+ msgstr ""
154
+
155
+ msgid "Fingerprint"
156
+ msgstr ""
157
+
158
+ msgid "Function"
159
+ msgstr ""
160
+
161
+ msgid "Hidden Value"
162
+ msgstr ""
163
+
164
+ msgid "Hide all values for this parameter."
165
+ msgstr ""
166
+
167
+ msgid "Hide the Run Salt state.highstate button on the host details page"
168
+ msgstr ""
169
+
170
+ msgid "Host groups"
171
+ msgstr ""
172
+
173
+ msgid "Host must have an environment in order to set salt states"
174
+ msgstr ""
175
+
176
+ msgid "Hosts"
177
+ msgstr ""
178
+
179
+ msgid "ID of Salt Proxy"
180
+ msgstr ""
181
+
182
+ msgid "If checked, will raise an error if there is no default value and no matcher provide a value."
183
+ msgstr ""
184
+
185
+ msgid "Import"
186
+ msgstr ""
187
+
188
+ msgid "Import Puppet classes"
189
+ msgstr ""
190
+
191
+ msgid "Import facts"
192
+ msgstr ""
193
+
194
+ msgid "Import from %s"
195
+ msgstr ""
196
+
197
+ msgid "Import states from a salt master"
198
+ msgstr ""
199
+
200
+ msgid "Include default value when merging all matching values"
201
+ msgstr ""
202
+
203
+ msgid "Include default value when merging all matching values."
204
+ msgstr ""
205
+
206
+ msgid "Invalid report"
207
+ msgstr ""
208
+
209
+ msgid "JID"
210
+ msgstr ""
211
+
212
+ msgid "Key Name"
213
+ msgstr ""
214
+
215
+ msgid "Keys"
216
+ msgstr ""
217
+
218
+ msgid "Limit to a specific environment"
219
+ msgstr ""
220
+
221
+ msgid "Limit to a specific environments"
222
+ msgstr ""
223
+
224
+ msgid "Limit to specific actions: i.e. add, remove"
225
+ msgstr ""
226
+
227
+ msgid "List Salt variables"
228
+ msgstr ""
229
+
230
+ msgid "List all Salt Minions"
231
+ msgstr ""
232
+
233
+ msgid "List all Salt environments"
234
+ msgstr ""
235
+
236
+ msgid "List all Salt keys"
237
+ msgstr ""
238
+
239
+ msgid "List all Salt states"
240
+ msgstr ""
241
+
242
+ msgid "List all autosign records"
243
+ msgstr ""
244
+
245
+ msgid "Mark the variable to be managed by Foreman. When the Salt State of this variable is assigned to a host, the default value will be added as a Salt pillar for this host. Specify matchers to set a different value for such variable."
246
+ msgstr ""
247
+
248
+ msgid "Merge all matching values (only array/hash type)"
249
+ msgstr ""
250
+
251
+ msgid "Must specify a Smart Proxy to use"
252
+ msgstr ""
253
+
254
+ msgid "Name"
255
+ msgstr ""
256
+
257
+ msgid "Name of the Salt state"
258
+ msgstr ""
259
+
260
+ msgid "Name of variable"
261
+ msgstr ""
262
+
263
+ msgid "Namespace Foreman pillars under 'foreman' key"
264
+ msgstr ""
265
+
266
+ msgid "New"
267
+ msgstr ""
268
+
269
+ msgid "New Autosign Entry"
270
+ msgstr ""
271
+
272
+ msgid "New Salt Environment"
273
+ msgstr ""
274
+
275
+ msgid "New Salt State"
276
+ msgstr ""
277
+
278
+ msgid "New Salt Variable"
279
+ msgstr ""
280
+
281
+ msgid "No Salt master defined - can't continue"
282
+ msgstr ""
283
+
284
+ msgid "No changes found"
285
+ msgstr ""
286
+
287
+ msgid "No salt environment selected!"
288
+ msgstr ""
289
+
290
+ msgid "Operation"
291
+ msgstr ""
292
+
293
+ msgid "Optional Input Validator"
294
+ msgstr ""
295
+
296
+ msgid "Order"
297
+ msgstr ""
298
+
299
+ msgid "Override the default value of the Salt variable."
300
+ msgstr ""
301
+
302
+ msgid "Overriden"
303
+ msgstr ""
304
+
305
+ msgid "Please select a Salt environment first"
306
+ msgstr ""
307
+
308
+ msgid "Prioritize Attribute Order"
309
+ msgstr ""
310
+
311
+ msgid "Record deleted."
312
+ msgstr ""
313
+
314
+ msgid "Reject"
315
+ msgstr ""
316
+
317
+ msgid "Rejected"
318
+ msgstr ""
319
+
320
+ msgid "Remote action:"
321
+ msgstr ""
322
+
323
+ msgid "Remove duplicate values (only array type)"
324
+ msgstr ""
325
+
326
+ msgid "Removed"
327
+ msgstr ""
328
+
329
+ msgid "Result"
330
+ msgstr ""
331
+
332
+ msgid "Run Salt"
333
+ msgstr ""
334
+
335
+ msgid "Run Salt state.highstate"
336
+ msgstr ""
337
+
338
+ msgid "Salt Autosign"
339
+ msgstr ""
340
+
341
+ msgid "Salt ENC"
342
+ msgstr ""
343
+
344
+ msgid "Salt Environment"
345
+ msgstr ""
346
+
347
+ msgid "Salt Environments"
348
+ msgstr ""
349
+
350
+ msgid "Salt Keys"
351
+ msgstr ""
352
+
353
+ msgid "Salt Keys on %s"
354
+ msgstr ""
355
+
356
+ msgid "Salt Master"
357
+ msgstr ""
358
+
359
+ msgid "Salt Smart Proxy ID"
360
+ msgstr ""
361
+
362
+ msgid "Salt State"
363
+ msgstr ""
364
+
365
+ msgid "Salt States"
366
+ msgstr ""
367
+
368
+ msgid "Salt Variable Details"
369
+ msgstr ""
370
+
371
+ msgid "Salt Variables"
372
+ msgstr ""
373
+
374
+ msgid "Salt environment"
375
+ msgstr ""
376
+
377
+ msgid "Salt environment ID"
378
+ msgstr ""
379
+
380
+ msgid "Salt external nodes YAML dump"
381
+ msgstr ""
382
+
383
+ msgid "Salt state"
384
+ msgstr ""
385
+
386
+ msgid "Salt states must be in the environment of the host"
387
+ msgstr ""
388
+
389
+ msgid "SaltEnvironment|Name"
390
+ msgstr ""
391
+
392
+ msgid "SaltModule|Name"
393
+ msgstr ""
394
+
395
+ msgid "Save"
396
+ msgstr ""
397
+
398
+ msgid "Select salt environment"
399
+ msgstr ""
400
+
401
+ msgid "Select the changes you want to realize in Foreman"
402
+ msgstr ""
403
+
404
+ msgid "Set the order in which values are resolved."
405
+ msgstr ""
406
+
407
+ msgid "Show a Salt environment"
408
+ msgstr ""
409
+
410
+ msgid "Show a minion"
411
+ msgstr ""
412
+
413
+ msgid "Show a state"
414
+ msgstr ""
415
+
416
+ msgid "Show variable"
417
+ msgstr ""
418
+
419
+ msgid "Specify Matchers"
420
+ msgstr ""
421
+
422
+ msgid "State"
423
+ msgstr ""
424
+
425
+ msgid "State ID"
426
+ msgstr ""
427
+
428
+ msgid "State can be \"accepted\" or \"rejected\""
429
+ msgstr ""
430
+
431
+ msgid "States"
432
+ msgstr ""
433
+
434
+ msgid "Successfully executed, check log files for more details"
435
+ msgstr ""
436
+
437
+ msgid "Successfully imported"
438
+ msgstr ""
439
+
440
+ msgid "Successfully updated %s."
441
+ msgstr ""
442
+
443
+ msgid "The order in which matchers keys are processed, first match wins.<br> You may use multiple attributes as a matcher key, for example, an order of <code>host group, environment</code> would expect a matcher such as <code>hostgroup = \"web servers\", environment = production</code>"
444
+ msgstr ""
445
+
446
+ msgid "The order in which values are resolved"
447
+ msgstr ""
448
+
449
+ msgid "Toggle"
450
+ msgstr ""
451
+
452
+ msgid "Trigger a state.highstate run on a node"
453
+ msgstr ""
454
+
455
+ msgid "Type"
456
+ msgstr ""
457
+
458
+ msgid "Types of validation values"
459
+ msgstr ""
460
+
461
+ msgid "Types of variable values"
462
+ msgstr ""
463
+
464
+ msgid "Unable to accept Salt key for %s"
465
+ msgstr ""
466
+
467
+ msgid "Unable to delete Salt autosign for %s"
468
+ msgstr ""
469
+
470
+ msgid "Unable to delete Salt key for %s"
471
+ msgstr ""
472
+
473
+ msgid "Unable to fetch Salt environments list"
474
+ msgstr ""
475
+
476
+ msgid "Unable to fetch Salt key list"
477
+ msgstr ""
478
+
479
+ msgid "Unable to fetch Salt states list"
480
+ msgstr ""
481
+
482
+ msgid "Unable to fetch autosign list"
483
+ msgstr ""
484
+
485
+ msgid ""
486
+ "Unable to generate output, Check log files\n"
487
+ msgstr ""
488
+
489
+ msgid "Unable to reject Salt key for %s"
490
+ msgstr ""
491
+
492
+ msgid "Unable to run Salt state.highstate for %s"
493
+ msgstr ""
494
+
495
+ msgid "Unable to set Salt autosign for %s"
496
+ msgstr ""
497
+
498
+ msgid "Unaccepted"
499
+ msgstr ""
500
+
501
+ msgid "Update"
502
+ msgstr ""
503
+
504
+ msgid "Update a Salt Key"
505
+ msgstr ""
506
+
507
+ msgid "Update a minion"
508
+ msgstr ""
509
+
510
+ msgid "Updated hosts: changed salt environment"
511
+ msgstr ""
512
+
513
+ msgid "Updates Salt variable"
514
+ msgstr ""
515
+
516
+ msgid "Upload a Job"
517
+ msgstr ""
518
+
519
+ msgid "Used to enforce certain values for the parameter values"
520
+ msgstr ""
521
+
522
+ msgid "Value to use when there is no match."
523
+ msgstr ""
524
+
525
+ msgid "Variables"
526
+ msgstr ""
527
+
528
+ msgid "Variable|Name"
529
+ msgstr ""
530
+
531
+ msgid "Variable|State"
532
+ msgstr ""
533
+
534
+ msgid "When enabled the parameter is hidden in the UI"
535
+ msgstr ""
536
+
537
+ msgid "is alphanumeric and cannot contain spaces"
538
+ msgstr ""
539
+
540
+ msgid "must be alphanumeric, can contain periods, dashes, underscores and must not contain spaces"
541
+ msgstr ""