hammer_cli_foreman 0.1.2 → 0.1.3
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/doc/release_notes.md +8 -0
- data/lib/hammer_cli_foreman/hostgroup.rb +16 -7
- data/lib/hammer_cli_foreman/i18n.rb +9 -0
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en/hammer-cli-foreman.po +1 -1
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/hammer-cli-foreman.po +162 -143
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/hammer-cli-foreman.po +164 -145
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/hammer-cli-foreman.po +163 -144
- data/locale/hammer-cli-foreman.pot +41 -29
- data/locale/zanata.xml +2 -3
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71742ee24003cbea249ed6b8fcc320a387f0cda6
|
|
4
|
+
data.tar.gz: 28009f6cd73936556d260a41d2867ad556fc4dfb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d28c63a5bbef34bd0366537402327574bf25df138b52e73acaa63033a089f90d774869a33919a81f985a4bc8448c46b5b1ba1ffda74b0491ec198e6f9f2bcbb
|
|
7
|
+
data.tar.gz: 4488cc268352a448ad178da5f76d4e1508391ad4d2a1a46cf6f7721c4b47b03a584f50163969ff39313498ace2dbe66ef16ebff5bbdf7abbb007bd5c086acb0b
|
data/doc/release_notes.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
Release notes
|
|
2
2
|
=============
|
|
3
3
|
|
|
4
|
+
### 0.1.3 (2014-08-20)
|
|
5
|
+
* Update foreman.yml
|
|
6
|
+
* Update the zanata.xml file to push to de-DE and es-ES ([#7112](http://projects.theforeman.org/issues/7112))
|
|
7
|
+
* Adding system locale domain ([#7083](http://projects.theforeman.org/issues/7083))
|
|
8
|
+
* Name options for puppet proxies in hostgroup ([#7085](http://projects.theforeman.org/issues/7085))
|
|
9
|
+
* I18n - extracting new, pulling from tx
|
|
10
|
+
|
|
11
|
+
|
|
4
12
|
### 0.1.2
|
|
5
13
|
* Docs for name->id resolution
|
|
6
14
|
* Update with installation details and IRC channel
|
|
@@ -5,12 +5,28 @@ module HammerCLIForeman
|
|
|
5
5
|
|
|
6
6
|
module HostgroupUpdateCreateCommons
|
|
7
7
|
|
|
8
|
+
def self.included(base)
|
|
9
|
+
base.option "--puppetclass-ids", "PUPPETCLASS_IDS", _("List of puppetclass ids"),
|
|
10
|
+
:format => HammerCLI::Options::Normalizers::List.new
|
|
11
|
+
base.option "--puppet-ca-proxy", "PUPPET_CA_PROXY_NAME", _("Name of puppet CA proxy")
|
|
12
|
+
base.option "--puppet-proxy", "PUPPET_PROXY_NAME", _("Name of puppet proxy")
|
|
13
|
+
end
|
|
14
|
+
|
|
8
15
|
def request_params
|
|
9
16
|
params = super
|
|
17
|
+
|
|
18
|
+
params['hostgroup']["puppet_proxy_id"] ||= proxy_id(option_puppet_proxy)
|
|
19
|
+
params['hostgroup']["puppet_ca_proxy_id"] ||= proxy_id(option_puppet_ca_proxy)
|
|
10
20
|
params['hostgroup']['puppetclass_ids'] = option_puppetclass_ids
|
|
11
21
|
params
|
|
12
22
|
end
|
|
13
23
|
|
|
24
|
+
private
|
|
25
|
+
|
|
26
|
+
def proxy_id(name)
|
|
27
|
+
resolver.smart_proxy_id('option_name' => name) if name
|
|
28
|
+
end
|
|
29
|
+
|
|
14
30
|
end
|
|
15
31
|
|
|
16
32
|
class Hostgroup < HammerCLIForeman::Command
|
|
@@ -55,10 +71,6 @@ module HammerCLIForeman
|
|
|
55
71
|
|
|
56
72
|
|
|
57
73
|
class CreateCommand < HammerCLIForeman::CreateCommand
|
|
58
|
-
|
|
59
|
-
option "--puppetclass-ids", "PUPPETCLASS_IDS", " ",
|
|
60
|
-
:format => HammerCLI::Options::Normalizers::List.new
|
|
61
|
-
|
|
62
74
|
include HostgroupUpdateCreateCommons
|
|
63
75
|
|
|
64
76
|
success_message _("Hostgroup created")
|
|
@@ -69,9 +81,6 @@ module HammerCLIForeman
|
|
|
69
81
|
|
|
70
82
|
|
|
71
83
|
class UpdateCommand < HammerCLIForeman::UpdateCommand
|
|
72
|
-
option "--puppetclass-ids", "PUPPETCLASS_IDS", " ",
|
|
73
|
-
:format => HammerCLI::Options::Normalizers::List.new
|
|
74
|
-
|
|
75
84
|
include HostgroupUpdateCreateCommons
|
|
76
85
|
|
|
77
86
|
success_message _("Hostgroup updated")
|
|
@@ -18,7 +18,16 @@ module HammerCLIForeman
|
|
|
18
18
|
end
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
+
class SystemLocaleDomain < LocaleDomain
|
|
22
|
+
|
|
23
|
+
def locale_dir
|
|
24
|
+
'/usr/share/locale'
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
end
|
|
28
|
+
|
|
21
29
|
end
|
|
22
30
|
end
|
|
23
31
|
|
|
24
32
|
HammerCLI::I18n.add_domain(HammerCLIForeman::I18n::LocaleDomain.new)
|
|
33
|
+
HammerCLI::I18n.add_domain(HammerCLIForeman::I18n::SystemLocaleDomain.new)
|
|
Binary file
|
|
Binary file
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
# Dominic Cleal <dcleal@redhat.com>, 2014
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: hammer-cli-foreman 0.1.
|
|
9
|
+
"Project-Id-Version: hammer-cli-foreman 0.1.3\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2014-08-
|
|
12
|
-
"PO-Revision-Date: 2014-08-
|
|
13
|
-
"Last-Translator:
|
|
11
|
+
"POT-Creation-Date: 2014-08-13 16:28+0200\n"
|
|
12
|
+
"PO-Revision-Date: 2014-08-20 08:50+0000\n"
|
|
13
|
+
"Last-Translator: Lukáš Zapletal\n"
|
|
14
14
|
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/foreman/language/en_GB/)\n"
|
|
15
15
|
"MIME-Version: 1.0\n"
|
|
16
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -21,11 +21,11 @@ msgstr ""
|
|
|
21
21
|
#: lib/hammer_cli_foreman/report.rb:10 lib/hammer_cli_foreman/report.rb:30
|
|
22
22
|
#: lib/hammer_cli_foreman/organization.rb:13
|
|
23
23
|
#: lib/hammer_cli_foreman/subnet.rb:10 lib/hammer_cli_foreman/model.rb:10
|
|
24
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
24
|
+
#: lib/hammer_cli_foreman/role.rb:11 lib/hammer_cli_foreman/media.rb:9
|
|
25
25
|
#: lib/hammer_cli_foreman/compute_resource.rb:11
|
|
26
26
|
#: lib/hammer_cli_foreman/smart_variables.rb:7
|
|
27
27
|
#: lib/hammer_cli_foreman/smart_variables.rb:65
|
|
28
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
28
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:23
|
|
29
29
|
#: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:124
|
|
30
30
|
#: lib/hammer_cli_foreman/host.rb:195 lib/hammer_cli_foreman/host.rb:208
|
|
31
31
|
#: lib/hammer_cli_foreman/operating_system.rb:10
|
|
@@ -35,7 +35,7 @@ msgstr ""
|
|
|
35
35
|
#: lib/hammer_cli_foreman/domain.rb:10
|
|
36
36
|
#: lib/hammer_cli_foreman/smart_class_parameter.rb:8
|
|
37
37
|
#: lib/hammer_cli_foreman/smart_class_parameter.rb:66
|
|
38
|
-
#: lib/hammer_cli_foreman/usergroup.rb:9 lib/hammer_cli_foreman/image.rb:
|
|
38
|
+
#: lib/hammer_cli_foreman/usergroup.rb:9 lib/hammer_cli_foreman/image.rb:29
|
|
39
39
|
#: lib/hammer_cli_foreman/partition_table.rb:10
|
|
40
40
|
#: lib/hammer_cli_foreman/user.rb:10 lib/hammer_cli_foreman/filter.rb:9
|
|
41
41
|
#: lib/hammer_cli_foreman/filter.rb:72 lib/hammer_cli_foreman/location.rb:13
|
|
@@ -148,16 +148,12 @@ msgstr ""
|
|
|
148
148
|
msgid "Could not delete the report"
|
|
149
149
|
msgstr ""
|
|
150
150
|
|
|
151
|
-
#: lib/hammer_cli_foreman/report.rb:88
|
|
152
|
-
msgid "Browse and read reports."
|
|
153
|
-
msgstr ""
|
|
154
|
-
|
|
155
151
|
#: lib/hammer_cli_foreman/organization.rb:14
|
|
156
152
|
#: lib/hammer_cli_foreman/common_parameter.rb:12
|
|
157
153
|
#: lib/hammer_cli_foreman/subnet.rb:11 lib/hammer_cli_foreman/model.rb:11
|
|
158
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
154
|
+
#: lib/hammer_cli_foreman/role.rb:12 lib/hammer_cli_foreman/media.rb:10
|
|
159
155
|
#: lib/hammer_cli_foreman/compute_resource.rb:12
|
|
160
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
156
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:24
|
|
161
157
|
#: lib/hammer_cli_foreman/template.rb:26 lib/hammer_cli_foreman/template.rb:74
|
|
162
158
|
#: lib/hammer_cli_foreman/host.rb:125 lib/hammer_cli_foreman/host.rb:196
|
|
163
159
|
#: lib/hammer_cli_foreman/host.rb:209
|
|
@@ -166,7 +162,7 @@ msgstr ""
|
|
|
166
162
|
#: lib/hammer_cli_foreman/environment.rb:15
|
|
167
163
|
#: lib/hammer_cli_foreman/puppet_class.rb:13
|
|
168
164
|
#: lib/hammer_cli_foreman/domain.rb:11 lib/hammer_cli_foreman/usergroup.rb:10
|
|
169
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
165
|
+
#: lib/hammer_cli_foreman/image.rb:30 lib/hammer_cli_foreman/image.rb:70
|
|
170
166
|
#: lib/hammer_cli_foreman/partition_table.rb:11
|
|
171
167
|
#: lib/hammer_cli_foreman/user.rb:12 lib/hammer_cli_foreman/filter.rb:73
|
|
172
168
|
#: lib/hammer_cli_foreman/filter.rb:90 lib/hammer_cli_foreman/location.rb:14
|
|
@@ -203,10 +199,6 @@ msgstr "Organisation deleted"
|
|
|
203
199
|
msgid "Could not delete the organization"
|
|
204
200
|
msgstr "Could not delete the organisation"
|
|
205
201
|
|
|
206
|
-
#: lib/hammer_cli_foreman/organization.rb:101
|
|
207
|
-
msgid "Manipulate organizations."
|
|
208
|
-
msgstr "Manipulate organisations."
|
|
209
|
-
|
|
210
202
|
#: lib/hammer_cli_foreman/common_parameter.rb:13
|
|
211
203
|
#: lib/hammer_cli_foreman/fact.rb:14
|
|
212
204
|
#: lib/hammer_cli_foreman/smart_variables.rb:64
|
|
@@ -324,10 +316,6 @@ msgstr ""
|
|
|
324
316
|
msgid "Could not delete the subnet"
|
|
325
317
|
msgstr ""
|
|
326
318
|
|
|
327
|
-
#: lib/hammer_cli_foreman/subnet.rb:73
|
|
328
|
-
msgid "Manipulate subnets."
|
|
329
|
-
msgstr ""
|
|
330
|
-
|
|
331
319
|
#: lib/hammer_cli_foreman/model.rb:12
|
|
332
320
|
msgid "Vendor class"
|
|
333
321
|
msgstr ""
|
|
@@ -364,60 +352,48 @@ msgstr ""
|
|
|
364
352
|
msgid "Could not update the hardware model"
|
|
365
353
|
msgstr ""
|
|
366
354
|
|
|
367
|
-
#: lib/hammer_cli_foreman/
|
|
368
|
-
msgid "Manipulate hardware models."
|
|
369
|
-
msgstr ""
|
|
370
|
-
|
|
371
|
-
#: lib/hammer_cli_foreman/role.rb:21
|
|
355
|
+
#: lib/hammer_cli_foreman/role.rb:23
|
|
372
356
|
msgid "User role id"
|
|
373
357
|
msgstr ""
|
|
374
358
|
|
|
375
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
359
|
+
#: lib/hammer_cli_foreman/role.rb:36 lib/hammer_cli_foreman/filter.rb:18
|
|
376
360
|
#: lib/hammer_cli_foreman/filter.rb:34 lib/hammer_cli_foreman/filter.rb:78
|
|
377
361
|
msgid "(Miscellaneous)"
|
|
378
362
|
msgstr ""
|
|
379
363
|
|
|
380
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
364
|
+
#: lib/hammer_cli_foreman/role.rb:37 lib/hammer_cli_foreman/filter.rb:19
|
|
381
365
|
#: lib/hammer_cli_foreman/filter.rb:35
|
|
382
366
|
msgid "none"
|
|
383
367
|
msgstr ""
|
|
384
368
|
|
|
385
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
369
|
+
#: lib/hammer_cli_foreman/role.rb:50
|
|
386
370
|
msgid "User role [%<name>s] created"
|
|
387
371
|
msgstr ""
|
|
388
372
|
|
|
389
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
373
|
+
#: lib/hammer_cli_foreman/role.rb:51
|
|
390
374
|
msgid "Could not create the user role"
|
|
391
375
|
msgstr ""
|
|
392
376
|
|
|
393
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
377
|
+
#: lib/hammer_cli_foreman/role.rb:58
|
|
394
378
|
msgid "User role [%<name>s] updated"
|
|
395
379
|
msgstr ""
|
|
396
380
|
|
|
397
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
381
|
+
#: lib/hammer_cli_foreman/role.rb:59
|
|
398
382
|
msgid "Could not update the user role"
|
|
399
383
|
msgstr ""
|
|
400
384
|
|
|
401
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
385
|
+
#: lib/hammer_cli_foreman/role.rb:66
|
|
402
386
|
msgid "User role [%<name>s] deleted"
|
|
403
387
|
msgstr ""
|
|
404
388
|
|
|
405
|
-
#: lib/hammer_cli_foreman/role.rb:
|
|
389
|
+
#: lib/hammer_cli_foreman/role.rb:67
|
|
406
390
|
msgid "Could not delete the user roles"
|
|
407
391
|
msgstr ""
|
|
408
392
|
|
|
409
|
-
#: lib/hammer_cli_foreman/role.rb:75
|
|
410
|
-
msgid "Manage user roles."
|
|
411
|
-
msgstr ""
|
|
412
|
-
|
|
413
393
|
#: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:281
|
|
414
394
|
msgid "Fact"
|
|
415
395
|
msgstr "Fact"
|
|
416
396
|
|
|
417
|
-
#: lib/hammer_cli_foreman/fact.rb:36
|
|
418
|
-
msgid "Search facts."
|
|
419
|
-
msgstr ""
|
|
420
|
-
|
|
421
397
|
#: lib/hammer_cli_foreman/media.rb:11
|
|
422
398
|
msgid "Path"
|
|
423
399
|
msgstr ""
|
|
@@ -451,19 +427,22 @@ msgstr ""
|
|
|
451
427
|
msgid "Could not delete the installation media"
|
|
452
428
|
msgstr ""
|
|
453
429
|
|
|
454
|
-
#: lib/hammer_cli_foreman/media.rb:64
|
|
455
|
-
msgid "Manipulate installation media."
|
|
456
|
-
msgstr ""
|
|
457
|
-
|
|
458
430
|
#: lib/hammer_cli_foreman/exception_handler.rb:41
|
|
459
431
|
msgid "Forbidden - server refused to process the request"
|
|
460
432
|
msgstr ""
|
|
461
433
|
|
|
462
434
|
#: lib/hammer_cli_foreman/exception_handler.rb:75
|
|
435
|
+
msgid "Could not load the API description from the server"
|
|
436
|
+
msgstr ""
|
|
437
|
+
|
|
438
|
+
#: lib/hammer_cli_foreman/exception_handler.rb:76
|
|
439
|
+
msgid "is the server down?"
|
|
440
|
+
msgstr ""
|
|
441
|
+
|
|
442
|
+
#: lib/hammer_cli_foreman/exception_handler.rb:77
|
|
463
443
|
msgid ""
|
|
464
|
-
"
|
|
465
|
-
"
|
|
466
|
-
"when using apipie cache? (typical production settings))\\n\""
|
|
444
|
+
"was '%s' run on the server when using apipie cache? (typical production "
|
|
445
|
+
"settings)"
|
|
467
446
|
msgstr ""
|
|
468
447
|
|
|
469
448
|
#: lib/hammer_cli_foreman/compute_resource.rb:13
|
|
@@ -472,8 +451,8 @@ msgstr ""
|
|
|
472
451
|
|
|
473
452
|
#: lib/hammer_cli_foreman/compute_resource.rb:23
|
|
474
453
|
#: lib/hammer_cli_foreman/compute_resource.rb:29
|
|
475
|
-
#: lib/hammer_cli_foreman/host.rb:157 lib/hammer_cli_foreman/image.rb:
|
|
476
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
454
|
+
#: lib/hammer_cli_foreman/host.rb:157 lib/hammer_cli_foreman/image.rb:33
|
|
455
|
+
#: lib/hammer_cli_foreman/image.rb:71
|
|
477
456
|
msgid "UUID"
|
|
478
457
|
msgstr ""
|
|
479
458
|
|
|
@@ -529,10 +508,6 @@ msgstr ""
|
|
|
529
508
|
msgid "Could not delete the compute resource"
|
|
530
509
|
msgstr ""
|
|
531
510
|
|
|
532
|
-
#: lib/hammer_cli_foreman/compute_resource.rb:95
|
|
533
|
-
msgid "Manipulate compute resources."
|
|
534
|
-
msgstr ""
|
|
535
|
-
|
|
536
511
|
#: lib/hammer_cli_foreman/associating_commands.rb:41
|
|
537
512
|
msgid "Associate a hostgroup"
|
|
538
513
|
msgstr ""
|
|
@@ -820,112 +795,108 @@ msgstr ""
|
|
|
820
795
|
msgid "Manipulate smart variables."
|
|
821
796
|
msgstr ""
|
|
822
797
|
|
|
823
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
798
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:25
|
|
824
799
|
msgid "Label"
|
|
825
800
|
msgstr ""
|
|
826
801
|
|
|
827
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
828
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
802
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:26 lib/hammer_cli_foreman/host.rb:126
|
|
803
|
+
#: lib/hammer_cli_foreman/image.rb:31
|
|
829
804
|
msgid "Operating System"
|
|
830
805
|
msgstr ""
|
|
831
806
|
|
|
832
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
807
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:27 lib/hammer_cli_foreman/host.rb:160
|
|
833
808
|
msgid "Environment"
|
|
834
809
|
msgstr ""
|
|
835
810
|
|
|
836
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
811
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:28 lib/hammer_cli_foreman/host.rb:181
|
|
837
812
|
msgid "Model"
|
|
838
813
|
msgstr "Model"
|
|
839
814
|
|
|
840
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
815
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:29
|
|
841
816
|
msgid "Ancestry"
|
|
842
817
|
msgstr ""
|
|
843
818
|
|
|
844
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
819
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:39 lib/hammer_cli_foreman/host.rb:183
|
|
845
820
|
msgid "Subnet"
|
|
846
821
|
msgstr "Subnet"
|
|
847
822
|
|
|
848
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
823
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:41 lib/hammer_cli_foreman/host.rb:184
|
|
849
824
|
msgid "Domain"
|
|
850
825
|
msgstr ""
|
|
851
826
|
|
|
852
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
853
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
827
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:42 lib/hammer_cli_foreman/host.rb:188
|
|
828
|
+
#: lib/hammer_cli_foreman/image.rb:45
|
|
854
829
|
msgid "Architecture"
|
|
855
830
|
msgstr ""
|
|
856
831
|
|
|
857
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
832
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:43 lib/hammer_cli_foreman/host.rb:187
|
|
858
833
|
msgid "Partition Table"
|
|
859
834
|
msgstr ""
|
|
860
835
|
|
|
861
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
836
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:44 lib/hammer_cli_foreman/host.rb:180
|
|
862
837
|
msgid "Medium"
|
|
863
838
|
msgstr ""
|
|
864
839
|
|
|
865
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
840
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:45 lib/hammer_cli_foreman/host.rb:179
|
|
866
841
|
msgid "Puppet CA Proxy Id"
|
|
867
842
|
msgstr ""
|
|
868
843
|
|
|
869
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
844
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:46
|
|
870
845
|
msgid "Puppet Master Proxy Id"
|
|
871
846
|
msgstr ""
|
|
872
847
|
|
|
873
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
848
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:47
|
|
874
849
|
msgid "ComputeProfile"
|
|
875
850
|
msgstr ""
|
|
876
851
|
|
|
877
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
852
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:64
|
|
878
853
|
msgid "Hostgroup created"
|
|
879
854
|
msgstr ""
|
|
880
855
|
|
|
881
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
856
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:65
|
|
882
857
|
msgid "Could not create the hostgroup"
|
|
883
858
|
msgstr ""
|
|
884
859
|
|
|
885
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
860
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:77
|
|
886
861
|
msgid "Hostgroup updated"
|
|
887
862
|
msgstr ""
|
|
888
863
|
|
|
889
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
864
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:78
|
|
890
865
|
msgid "Could not update the hostgroup"
|
|
891
866
|
msgstr ""
|
|
892
867
|
|
|
893
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
868
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:85
|
|
894
869
|
msgid "Hostgroup deleted"
|
|
895
870
|
msgstr ""
|
|
896
871
|
|
|
897
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
872
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:86
|
|
898
873
|
msgid "Could not delete the hostgroup"
|
|
899
874
|
msgstr ""
|
|
900
875
|
|
|
901
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
876
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:113
|
|
902
877
|
msgid "Create or update parameter for a hostgroup."
|
|
903
878
|
msgstr ""
|
|
904
879
|
|
|
905
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
880
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:115
|
|
906
881
|
msgid "Hostgroup parameter updated"
|
|
907
882
|
msgstr ""
|
|
908
883
|
|
|
909
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
884
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:116
|
|
910
885
|
msgid "New hostgroup parameter created"
|
|
911
886
|
msgstr ""
|
|
912
887
|
|
|
913
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
888
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:117
|
|
914
889
|
msgid "Could not set hostgroup parameter"
|
|
915
890
|
msgstr ""
|
|
916
891
|
|
|
917
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
892
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:124
|
|
918
893
|
msgid "Delete parameter for a hostgroup."
|
|
919
894
|
msgstr ""
|
|
920
895
|
|
|
921
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:
|
|
896
|
+
#: lib/hammer_cli_foreman/hostgroup.rb:126
|
|
922
897
|
msgid "Hostgroup parameter deleted"
|
|
923
898
|
msgstr ""
|
|
924
899
|
|
|
925
|
-
#: lib/hammer_cli_foreman/hostgroup.rb:141
|
|
926
|
-
msgid "Manipulate hostgroups."
|
|
927
|
-
msgstr ""
|
|
928
|
-
|
|
929
900
|
#: lib/hammer_cli_foreman/template.rb:71
|
|
930
901
|
msgid "List available config template kinds."
|
|
931
902
|
msgstr ""
|
|
@@ -968,10 +939,6 @@ msgstr ""
|
|
|
968
939
|
msgid "Could not delete the config template"
|
|
969
940
|
msgstr ""
|
|
970
941
|
|
|
971
|
-
#: lib/hammer_cli_foreman/template.rb:154
|
|
972
|
-
msgid "Manipulate config templates."
|
|
973
|
-
msgstr ""
|
|
974
|
-
|
|
975
942
|
#: lib/hammer_cli_foreman/host.rb:36
|
|
976
943
|
msgid "Host parameters."
|
|
977
944
|
msgstr ""
|
|
@@ -1418,7 +1385,7 @@ msgid "Could not delete the default template"
|
|
|
1418
1385
|
msgstr ""
|
|
1419
1386
|
|
|
1420
1387
|
#: lib/hammer_cli_foreman/operating_system.rb:217
|
|
1421
|
-
msgid "
|
|
1388
|
+
msgid "Default template of type %s not found"
|
|
1422
1389
|
msgstr ""
|
|
1423
1390
|
|
|
1424
1391
|
#: lib/hammer_cli_foreman/smart_proxy.rb:13
|
|
@@ -1474,10 +1441,6 @@ msgstr ""
|
|
|
1474
1441
|
msgid "Refresh of smart proxy features failed"
|
|
1475
1442
|
msgstr ""
|
|
1476
1443
|
|
|
1477
|
-
#: lib/hammer_cli_foreman/smart_proxy.rb:103
|
|
1478
|
-
msgid "Manipulate smart proxies."
|
|
1479
|
-
msgstr ""
|
|
1480
|
-
|
|
1481
1444
|
#: lib/hammer_cli_foreman/environment.rb:34
|
|
1482
1445
|
msgid "Environment created"
|
|
1483
1446
|
msgstr ""
|
|
@@ -1514,10 +1477,6 @@ msgstr ""
|
|
|
1514
1477
|
msgid "Smart class parameters"
|
|
1515
1478
|
msgstr ""
|
|
1516
1479
|
|
|
1517
|
-
#: lib/hammer_cli_foreman/puppet_class.rb:60
|
|
1518
|
-
msgid "Search puppet modules."
|
|
1519
|
-
msgstr ""
|
|
1520
|
-
|
|
1521
1480
|
#: lib/hammer_cli_foreman/domain.rb:22
|
|
1522
1481
|
msgid "DNS Id"
|
|
1523
1482
|
msgstr ""
|
|
@@ -1574,14 +1533,6 @@ msgstr ""
|
|
|
1574
1533
|
msgid "Domain parameter deleted"
|
|
1575
1534
|
msgstr ""
|
|
1576
1535
|
|
|
1577
|
-
#: lib/hammer_cli_foreman/domain.rb:96
|
|
1578
|
-
msgid "Manipulate domains."
|
|
1579
|
-
msgstr ""
|
|
1580
|
-
|
|
1581
|
-
#: lib/hammer_cli_foreman/smart_class_parameter.rb:107
|
|
1582
|
-
msgid "Manipulate smart class parameters."
|
|
1583
|
-
msgstr ""
|
|
1584
|
-
|
|
1585
1536
|
#: lib/hammer_cli_foreman/auth.rb:7
|
|
1586
1537
|
msgid "Set credentials"
|
|
1587
1538
|
msgstr ""
|
|
@@ -1608,10 +1559,6 @@ msgid ""
|
|
|
1608
1559
|
"credentials."
|
|
1609
1560
|
msgstr ""
|
|
1610
1561
|
|
|
1611
|
-
#: lib/hammer_cli_foreman/auth.rb:48
|
|
1612
|
-
msgid "Foreman connection login/logout."
|
|
1613
|
-
msgstr ""
|
|
1614
|
-
|
|
1615
1562
|
#: lib/hammer_cli_foreman/usergroup.rb:28
|
|
1616
1563
|
msgid "User group [%<name>s] created"
|
|
1617
1564
|
msgstr ""
|
|
@@ -1636,47 +1583,43 @@ msgstr ""
|
|
|
1636
1583
|
msgid "Could not delete the user group"
|
|
1637
1584
|
msgstr ""
|
|
1638
1585
|
|
|
1639
|
-
#: lib/hammer_cli_foreman/
|
|
1640
|
-
msgid "Manage user groups."
|
|
1641
|
-
msgstr ""
|
|
1642
|
-
|
|
1643
|
-
#: lib/hammer_cli_foreman/image.rb:9
|
|
1586
|
+
#: lib/hammer_cli_foreman/image.rb:8
|
|
1644
1587
|
msgid "View and manage compute resource's images"
|
|
1645
1588
|
msgstr ""
|
|
1646
1589
|
|
|
1647
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
1590
|
+
#: lib/hammer_cli_foreman/image.rb:32
|
|
1648
1591
|
msgid "Username"
|
|
1649
1592
|
msgstr ""
|
|
1650
1593
|
|
|
1651
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
1594
|
+
#: lib/hammer_cli_foreman/image.rb:46
|
|
1652
1595
|
msgid "IAM role"
|
|
1653
1596
|
msgstr ""
|
|
1654
1597
|
|
|
1655
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
1598
|
+
#: lib/hammer_cli_foreman/image.rb:56
|
|
1656
1599
|
msgid "Show images available for addition"
|
|
1657
1600
|
msgstr ""
|
|
1658
1601
|
|
|
1659
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
1602
|
+
#: lib/hammer_cli_foreman/image.rb:81
|
|
1660
1603
|
msgid "Image created"
|
|
1661
1604
|
msgstr ""
|
|
1662
1605
|
|
|
1663
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
1606
|
+
#: lib/hammer_cli_foreman/image.rb:82
|
|
1664
1607
|
msgid "Could not create the image"
|
|
1665
1608
|
msgstr ""
|
|
1666
1609
|
|
|
1667
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
1610
|
+
#: lib/hammer_cli_foreman/image.rb:90
|
|
1668
1611
|
msgid "Image updated"
|
|
1669
1612
|
msgstr ""
|
|
1670
1613
|
|
|
1671
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
1614
|
+
#: lib/hammer_cli_foreman/image.rb:91
|
|
1672
1615
|
msgid "Could not update the image"
|
|
1673
1616
|
msgstr ""
|
|
1674
1617
|
|
|
1675
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
1618
|
+
#: lib/hammer_cli_foreman/image.rb:99
|
|
1676
1619
|
msgid "Image deleted"
|
|
1677
1620
|
msgstr ""
|
|
1678
1621
|
|
|
1679
|
-
#: lib/hammer_cli_foreman/image.rb:
|
|
1622
|
+
#: lib/hammer_cli_foreman/image.rb:100
|
|
1680
1623
|
msgid "Could not delete the image"
|
|
1681
1624
|
msgstr ""
|
|
1682
1625
|
|
|
@@ -1713,10 +1656,6 @@ msgstr ""
|
|
|
1713
1656
|
msgid "Could not delete the partition table"
|
|
1714
1657
|
msgstr ""
|
|
1715
1658
|
|
|
1716
|
-
#: lib/hammer_cli_foreman/partition_table.rb:80
|
|
1717
|
-
msgid "Manipulate partition tables."
|
|
1718
|
-
msgstr ""
|
|
1719
|
-
|
|
1720
1659
|
#: lib/hammer_cli_foreman/credentials.rb:10
|
|
1721
1660
|
msgid "[Foreman] username: "
|
|
1722
1661
|
msgstr ""
|
|
@@ -1861,10 +1800,6 @@ msgstr ""
|
|
|
1861
1800
|
msgid "Could not delete the user"
|
|
1862
1801
|
msgstr ""
|
|
1863
1802
|
|
|
1864
|
-
#: lib/hammer_cli_foreman/user.rb:76
|
|
1865
|
-
msgid "Manipulate users."
|
|
1866
|
-
msgstr ""
|
|
1867
|
-
|
|
1868
1803
|
#: lib/hammer_cli_foreman/filter.rb:10
|
|
1869
1804
|
msgid "Resource type"
|
|
1870
1805
|
msgstr ""
|
|
@@ -1909,10 +1844,6 @@ msgstr ""
|
|
|
1909
1844
|
msgid "Could not delete the permission filter"
|
|
1910
1845
|
msgstr ""
|
|
1911
1846
|
|
|
1912
|
-
#: lib/hammer_cli_foreman/filter.rb:101
|
|
1913
|
-
msgid "Manage permission filters."
|
|
1914
|
-
msgstr ""
|
|
1915
|
-
|
|
1916
1847
|
#: lib/hammer_cli_foreman/location.rb:24 lib/hammer_cli_foreman/location.rb:62
|
|
1917
1848
|
#: lib/hammer_cli_foreman/location.rb:74
|
|
1918
1849
|
msgid "Location numeric id to search by"
|
|
@@ -1942,10 +1873,6 @@ msgstr ""
|
|
|
1942
1873
|
msgid "Could not delete the location"
|
|
1943
1874
|
msgstr ""
|
|
1944
1875
|
|
|
1945
|
-
#: lib/hammer_cli_foreman/location.rb:100
|
|
1946
|
-
msgid "Manipulate locations."
|
|
1947
|
-
msgstr ""
|
|
1948
|
-
|
|
1949
1876
|
#: lib/hammer_cli_foreman/architecture.rb:31
|
|
1950
1877
|
msgid "Architecture created"
|
|
1951
1878
|
msgstr ""
|
|
@@ -1970,6 +1897,98 @@ msgstr ""
|
|
|
1970
1897
|
msgid "Could not update the architecture"
|
|
1971
1898
|
msgstr ""
|
|
1972
1899
|
|
|
1973
|
-
#: lib/hammer_cli_foreman
|
|
1900
|
+
#: lib/hammer_cli_foreman.rb:30
|
|
1901
|
+
msgid "Foreman connection login/logout."
|
|
1902
|
+
msgstr ""
|
|
1903
|
+
|
|
1904
|
+
#: lib/hammer_cli_foreman.rb:34
|
|
1974
1905
|
msgid "Manipulate architectures."
|
|
1975
1906
|
msgstr ""
|
|
1907
|
+
|
|
1908
|
+
#: lib/hammer_cli_foreman.rb:38
|
|
1909
|
+
msgid "Manipulate compute resources."
|
|
1910
|
+
msgstr ""
|
|
1911
|
+
|
|
1912
|
+
#: lib/hammer_cli_foreman.rb:42
|
|
1913
|
+
msgid "Manipulate domains."
|
|
1914
|
+
msgstr ""
|
|
1915
|
+
|
|
1916
|
+
#: lib/hammer_cli_foreman.rb:46
|
|
1917
|
+
msgid "Manipulate environments."
|
|
1918
|
+
msgstr ""
|
|
1919
|
+
|
|
1920
|
+
#: lib/hammer_cli_foreman.rb:50
|
|
1921
|
+
msgid "Search facts."
|
|
1922
|
+
msgstr ""
|
|
1923
|
+
|
|
1924
|
+
#: lib/hammer_cli_foreman.rb:54
|
|
1925
|
+
msgid "Manage permission filters."
|
|
1926
|
+
msgstr ""
|
|
1927
|
+
|
|
1928
|
+
#: lib/hammer_cli_foreman.rb:58
|
|
1929
|
+
msgid "Manipulate hosts."
|
|
1930
|
+
msgstr ""
|
|
1931
|
+
|
|
1932
|
+
#: lib/hammer_cli_foreman.rb:62
|
|
1933
|
+
msgid "Manipulate hostgroups."
|
|
1934
|
+
msgstr ""
|
|
1935
|
+
|
|
1936
|
+
#: lib/hammer_cli_foreman.rb:66
|
|
1937
|
+
msgid "Manipulate locations."
|
|
1938
|
+
msgstr ""
|
|
1939
|
+
|
|
1940
|
+
#: lib/hammer_cli_foreman.rb:70
|
|
1941
|
+
msgid "Manipulate installation media."
|
|
1942
|
+
msgstr ""
|
|
1943
|
+
|
|
1944
|
+
#: lib/hammer_cli_foreman.rb:74
|
|
1945
|
+
msgid "Manipulate hardware models."
|
|
1946
|
+
msgstr ""
|
|
1947
|
+
|
|
1948
|
+
#: lib/hammer_cli_foreman.rb:78
|
|
1949
|
+
msgid "Manipulate operating system."
|
|
1950
|
+
msgstr ""
|
|
1951
|
+
|
|
1952
|
+
#: lib/hammer_cli_foreman.rb:82
|
|
1953
|
+
msgid "Manipulate organizations."
|
|
1954
|
+
msgstr "Manipulate organisations."
|
|
1955
|
+
|
|
1956
|
+
#: lib/hammer_cli_foreman.rb:86
|
|
1957
|
+
msgid "Manipulate partition tables."
|
|
1958
|
+
msgstr ""
|
|
1959
|
+
|
|
1960
|
+
#: lib/hammer_cli_foreman.rb:90
|
|
1961
|
+
msgid "Search puppet modules."
|
|
1962
|
+
msgstr ""
|
|
1963
|
+
|
|
1964
|
+
#: lib/hammer_cli_foreman.rb:94
|
|
1965
|
+
msgid "Browse and read reports."
|
|
1966
|
+
msgstr ""
|
|
1967
|
+
|
|
1968
|
+
#: lib/hammer_cli_foreman.rb:98
|
|
1969
|
+
msgid "Manage user roles."
|
|
1970
|
+
msgstr ""
|
|
1971
|
+
|
|
1972
|
+
#: lib/hammer_cli_foreman.rb:102
|
|
1973
|
+
msgid "Manipulate smart class parameters."
|
|
1974
|
+
msgstr ""
|
|
1975
|
+
|
|
1976
|
+
#: lib/hammer_cli_foreman.rb:106
|
|
1977
|
+
msgid "Manipulate smart proxies."
|
|
1978
|
+
msgstr ""
|
|
1979
|
+
|
|
1980
|
+
#: lib/hammer_cli_foreman.rb:110
|
|
1981
|
+
msgid "Manipulate subnets."
|
|
1982
|
+
msgstr ""
|
|
1983
|
+
|
|
1984
|
+
#: lib/hammer_cli_foreman.rb:114
|
|
1985
|
+
msgid "Manipulate config templates."
|
|
1986
|
+
msgstr ""
|
|
1987
|
+
|
|
1988
|
+
#: lib/hammer_cli_foreman.rb:118
|
|
1989
|
+
msgid "Manipulate users."
|
|
1990
|
+
msgstr ""
|
|
1991
|
+
|
|
1992
|
+
#: lib/hammer_cli_foreman.rb:122
|
|
1993
|
+
msgid "Manage user groups."
|
|
1994
|
+
msgstr ""
|