hammer_cli_foreman 0.1.4 → 0.2.0

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.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/config/foreman.yml +16 -0
  3. data/doc/host_create.md +102 -54
  4. data/doc/release_notes.md +20 -0
  5. data/lib/hammer_cli_foreman.rb +8 -0
  6. data/lib/hammer_cli_foreman/commands.rb +33 -9
  7. data/lib/hammer_cli_foreman/compute_resource.rb +13 -2
  8. data/lib/hammer_cli_foreman/domain.rb +24 -1
  9. data/lib/hammer_cli_foreman/environment.rb +1 -2
  10. data/lib/hammer_cli_foreman/host.rb +131 -73
  11. data/lib/hammer_cli_foreman/hostgroup.rb +18 -8
  12. data/lib/hammer_cli_foreman/i18n.rb +2 -6
  13. data/lib/hammer_cli_foreman/id_resolver.rb +41 -6
  14. data/lib/hammer_cli_foreman/interface.rb +165 -0
  15. data/lib/hammer_cli_foreman/output/fields.rb +7 -0
  16. data/lib/hammer_cli_foreman/output/formatters.rb +3 -5
  17. data/lib/hammer_cli_foreman/puppet_class.rb +16 -2
  18. data/lib/hammer_cli_foreman/settings.rb +37 -0
  19. data/lib/hammer_cli_foreman/smart_class_parameter.rb +75 -11
  20. data/lib/hammer_cli_foreman/smart_variable.rb +146 -0
  21. data/lib/hammer_cli_foreman/user.rb +9 -3
  22. data/lib/hammer_cli_foreman/version.rb +1 -1
  23. data/locale/Makefile +9 -17
  24. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  25. data/locale/de/hammer-cli-foreman.edit.po +2403 -0
  26. data/locale/de/hammer-cli-foreman.po +302 -355
  27. data/locale/de/hammer-cli-foreman.po.time_stamp +0 -0
  28. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  29. data/locale/en/hammer-cli-foreman.edit.po +2260 -0
  30. data/locale/en/hammer-cli-foreman.po +946 -823
  31. data/locale/en/hammer-cli-foreman.po.time_stamp +0 -0
  32. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  33. data/locale/en_GB/hammer-cli-foreman.edit.po +2267 -0
  34. data/locale/en_GB/hammer-cli-foreman.po +297 -351
  35. data/locale/en_GB/hammer-cli-foreman.po.time_stamp +0 -0
  36. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  37. data/locale/es/hammer-cli-foreman.edit.po +2427 -0
  38. data/locale/es/hammer-cli-foreman.po +301 -354
  39. data/locale/es/hammer-cli-foreman.po.time_stamp +0 -0
  40. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  41. data/locale/fr/hammer-cli-foreman.edit.po +2427 -0
  42. data/locale/fr/hammer-cli-foreman.po +299 -353
  43. data/locale/fr/hammer-cli-foreman.po.time_stamp +0 -0
  44. data/locale/hammer-cli-foreman.pot +1413 -1112
  45. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  46. data/locale/it/hammer-cli-foreman.edit.po +2402 -0
  47. data/locale/it/hammer-cli-foreman.po +299 -353
  48. data/locale/it/hammer-cli-foreman.po.time_stamp +0 -0
  49. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  50. data/locale/ja/hammer-cli-foreman.edit.po +2401 -0
  51. data/locale/ja/hammer-cli-foreman.po +338 -391
  52. data/locale/ja/hammer-cli-foreman.po.time_stamp +0 -0
  53. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  54. data/locale/ko/hammer-cli-foreman.edit.po +2401 -0
  55. data/locale/ko/hammer-cli-foreman.po +299 -353
  56. data/locale/ko/hammer-cli-foreman.po.time_stamp +0 -0
  57. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  58. data/locale/pt_BR/hammer-cli-foreman.edit.po +2417 -0
  59. data/locale/pt_BR/hammer-cli-foreman.po +312 -365
  60. data/locale/pt_BR/hammer-cli-foreman.po.time_stamp +0 -0
  61. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  62. data/locale/ru/hammer-cli-foreman.edit.po +2401 -0
  63. data/locale/ru/hammer-cli-foreman.po +300 -354
  64. data/locale/ru/hammer-cli-foreman.po.time_stamp +0 -0
  65. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  66. data/locale/zh_CN/hammer-cli-foreman.edit.po +2400 -0
  67. data/locale/zh_CN/hammer-cli-foreman.po +299 -353
  68. data/locale/zh_CN/hammer-cli-foreman.po.time_stamp +0 -0
  69. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  70. data/locale/zh_TW/hammer-cli-foreman.edit.po +2400 -0
  71. data/locale/zh_TW/hammer-cli-foreman.po +299 -353
  72. data/locale/zh_TW/hammer-cli-foreman.po.time_stamp +0 -0
  73. data/test/unit/apipie_resource_mock.rb +7 -0
  74. data/test/unit/commands_test.rb +42 -0
  75. data/test/unit/data/1.7/foreman_api.json +1 -0
  76. data/test/unit/dependency_resolver_test.rb +4 -2
  77. data/test/unit/environment_test.rb +2 -2
  78. data/test/unit/host_test.rb +50 -27
  79. data/test/unit/hostgroup_test.rb +19 -3
  80. data/test/unit/media_test.rb +2 -2
  81. data/test/unit/puppet_class_test.rb +17 -2
  82. data/test/unit/smart_class_parameter_test.rb +26 -2
  83. data/test/unit/smart_variable_test.rb +134 -0
  84. data/test/unit/test_helper.rb +1 -1
  85. metadata +36 -4
@@ -4,15 +4,16 @@
4
4
  #
5
5
  # Translators:
6
6
  # Ettore Atalan <atalanttore@googlemail.com>, 2014
7
+ # Marcel Fuhrmann <marcel@mfsystems.me>, 2015
7
8
  # simon11 <simon.stieger.98@live.de>, 2014
8
9
  # simon11 <simon.stieger.98@live.de>, 2014
9
10
  msgid ""
10
11
  msgstr ""
11
- "Project-Id-Version: hammer-cli-foreman 0.1.4\n"
12
+ "Project-Id-Version: hammer-cli-foreman 0.2.0\n"
12
13
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2014-09-19 13:34+0200\n"
14
- "PO-Revision-Date: 2014-10-11 10:31+0000\n"
15
- "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
14
+ "POT-Creation-Date: 2014-12-11 13:21+0100\n"
15
+ "PO-Revision-Date: 2015-03-22 03:37+0000\n"
16
+ "Last-Translator: Marcel Fuhrmann <marcel@mfsystems.me>\n"
16
17
  "Language-Team: German (http://www.transifex.com/projects/p/foreman/language/de/)\n"
17
18
  "MIME-Version: 1.0\n"
18
19
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,13 +26,10 @@ msgstr ""
25
26
  #: lib/hammer_cli_foreman/organization.rb:13
26
27
  #: lib/hammer_cli_foreman/subnet.rb:10 lib/hammer_cli_foreman/model.rb:10
27
28
  #: lib/hammer_cli_foreman/role.rb:11 lib/hammer_cli_foreman/media.rb:9
28
- #: lib/hammer_cli_foreman/override_value.rb:28
29
29
  #: lib/hammer_cli_foreman/compute_resource.rb:11
30
- #: lib/hammer_cli_foreman/smart_variables.rb:7
31
- #: lib/hammer_cli_foreman/smart_variables.rb:65
32
- #: lib/hammer_cli_foreman/hostgroup.rb:39
33
- #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:124
34
- #: lib/hammer_cli_foreman/host.rb:195 lib/hammer_cli_foreman/host.rb:208
30
+ #: lib/hammer_cli_foreman/hostgroup.rb:46
31
+ #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:128
32
+ #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
35
33
  #: lib/hammer_cli_foreman/operating_system.rb:10
36
34
  #: lib/hammer_cli_foreman/smart_proxy.rb:11
37
35
  #: lib/hammer_cli_foreman/environment.rb:14
@@ -53,7 +51,7 @@ msgstr "Kennung"
53
51
  msgid "Host"
54
52
  msgstr "Host"
55
53
 
56
- #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:177
54
+ #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:181
57
55
  msgid "Last report"
58
56
  msgstr "letzter Report"
59
57
 
@@ -163,12 +161,11 @@ msgstr ""
163
161
  #: lib/hammer_cli_foreman/common_parameter.rb:12
164
162
  #: lib/hammer_cli_foreman/subnet.rb:11 lib/hammer_cli_foreman/model.rb:11
165
163
  #: lib/hammer_cli_foreman/role.rb:12 lib/hammer_cli_foreman/media.rb:10
166
- #: lib/hammer_cli_foreman/override_value.rb:29
167
164
  #: lib/hammer_cli_foreman/compute_resource.rb:12
168
- #: lib/hammer_cli_foreman/hostgroup.rb:40
165
+ #: lib/hammer_cli_foreman/hostgroup.rb:47
169
166
  #: lib/hammer_cli_foreman/template.rb:26 lib/hammer_cli_foreman/template.rb:74
170
- #: lib/hammer_cli_foreman/host.rb:125 lib/hammer_cli_foreman/host.rb:196
171
- #: lib/hammer_cli_foreman/host.rb:209
167
+ #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:200
168
+ #: lib/hammer_cli_foreman/host.rb:213
172
169
  #: lib/hammer_cli_foreman/operating_system.rb:22
173
170
  #: lib/hammer_cli_foreman/smart_proxy.rb:12
174
171
  #: lib/hammer_cli_foreman/environment.rb:15
@@ -246,10 +243,7 @@ msgid "Could not delete the organization"
246
243
  msgstr "Organisation konnte nicht entfernt werden"
247
244
 
248
245
  #: lib/hammer_cli_foreman/common_parameter.rb:13
249
- #: lib/hammer_cli_foreman/fact.rb:14
250
- #: lib/hammer_cli_foreman/smart_variables.rb:64
251
- #: lib/hammer_cli_foreman/smart_variables.rb:67
252
- #: lib/hammer_cli_foreman/host.rb:282
246
+ #: lib/hammer_cli_foreman/fact.rb:14 lib/hammer_cli_foreman/host.rb:286
253
247
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:65
254
248
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:68
255
249
  msgid "Value"
@@ -402,41 +396,41 @@ msgstr "Hardwaremodell konnte nicht aktualisiert werden"
402
396
  msgid "User role id"
403
397
  msgstr "Benutzerrollen-ID"
404
398
 
405
- #: lib/hammer_cli_foreman/role.rb:36 lib/hammer_cli_foreman/filter.rb:18
399
+ #: lib/hammer_cli_foreman/role.rb:33 lib/hammer_cli_foreman/filter.rb:18
406
400
  #: lib/hammer_cli_foreman/filter.rb:34 lib/hammer_cli_foreman/filter.rb:78
407
401
  msgid "(Miscellaneous)"
408
402
  msgstr "(Verschiedenes)"
409
403
 
410
- #: lib/hammer_cli_foreman/role.rb:37 lib/hammer_cli_foreman/filter.rb:19
404
+ #: lib/hammer_cli_foreman/role.rb:34 lib/hammer_cli_foreman/filter.rb:19
411
405
  #: lib/hammer_cli_foreman/filter.rb:35
412
406
  msgid "none"
413
407
  msgstr "keine"
414
408
 
415
- #: lib/hammer_cli_foreman/role.rb:50
409
+ #: lib/hammer_cli_foreman/role.rb:47
416
410
  msgid "User role [%<name>s] created"
417
411
  msgstr "Benutzerrolle [%<name>s] erstellt"
418
412
 
419
- #: lib/hammer_cli_foreman/role.rb:51
413
+ #: lib/hammer_cli_foreman/role.rb:48
420
414
  msgid "Could not create the user role"
421
415
  msgstr "Benutzerrolle konnte nicht erstellt werden"
422
416
 
423
- #: lib/hammer_cli_foreman/role.rb:58
417
+ #: lib/hammer_cli_foreman/role.rb:55
424
418
  msgid "User role [%<name>s] updated"
425
419
  msgstr "Benutzerrolle [%<name>s] aktualisiert"
426
420
 
427
- #: lib/hammer_cli_foreman/role.rb:59
421
+ #: lib/hammer_cli_foreman/role.rb:56
428
422
  msgid "Could not update the user role"
429
423
  msgstr "Benutzerrolle konnte nicht aktualisiert werden"
430
424
 
431
- #: lib/hammer_cli_foreman/role.rb:66
425
+ #: lib/hammer_cli_foreman/role.rb:63
432
426
  msgid "User role [%<name>s] deleted"
433
427
  msgstr "Benutzerrolle [%<name>s] gelöscht"
434
428
 
435
- #: lib/hammer_cli_foreman/role.rb:67
429
+ #: lib/hammer_cli_foreman/role.rb:64
436
430
  msgid "Could not delete the user roles"
437
431
  msgstr "Benutzerrollen konnten nicht gelöscht werden"
438
432
 
439
- #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:281
433
+ #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:285
440
434
  msgid "Fact"
441
435
  msgstr "Fakt"
442
436
 
@@ -473,64 +467,6 @@ msgstr "Installationsmedium entfernt"
473
467
  msgid "Could not delete the installation media"
474
468
  msgstr "Installationsmedium konnte nicht entfernt werden"
475
469
 
476
- #: lib/hammer_cli_foreman/override_value.rb:7
477
- msgid "View and manage override values"
478
- msgstr ""
479
-
480
- #: lib/hammer_cli_foreman/override_value.rb:30
481
- #: lib/hammer_cli_foreman/hostgroup.rb:42 lib/hammer_cli_foreman/host.rb:126
482
- #: lib/hammer_cli_foreman/image.rb:31
483
- msgid "Operating System"
484
- msgstr "Betriebssystem"
485
-
486
- #: lib/hammer_cli_foreman/override_value.rb:31
487
- #: lib/hammer_cli_foreman/image.rb:32
488
- msgid "Username"
489
- msgstr "Benutzername"
490
-
491
- #: lib/hammer_cli_foreman/override_value.rb:32
492
- #: lib/hammer_cli_foreman/compute_resource.rb:23
493
- #: lib/hammer_cli_foreman/compute_resource.rb:29
494
- #: lib/hammer_cli_foreman/host.rb:157 lib/hammer_cli_foreman/image.rb:33
495
- #: lib/hammer_cli_foreman/image.rb:71
496
- msgid "UUID"
497
- msgstr "UUID"
498
-
499
- #: lib/hammer_cli_foreman/override_value.rb:44
500
- #: lib/hammer_cli_foreman/hostgroup.rb:58 lib/hammer_cli_foreman/host.rb:188
501
- #: lib/hammer_cli_foreman/image.rb:45
502
- msgid "Architecture"
503
- msgstr "Architektur"
504
-
505
- #: lib/hammer_cli_foreman/override_value.rb:45
506
- #: lib/hammer_cli_foreman/image.rb:46
507
- msgid "IAM role"
508
- msgstr "IAM-Rolle"
509
-
510
- #: lib/hammer_cli_foreman/override_value.rb:55
511
- msgid "OverrideValue created"
512
- msgstr ""
513
-
514
- #: lib/hammer_cli_foreman/override_value.rb:56
515
- msgid "Could not create the override_value"
516
- msgstr ""
517
-
518
- #: lib/hammer_cli_foreman/override_value.rb:64
519
- msgid "OverrideValue updated"
520
- msgstr ""
521
-
522
- #: lib/hammer_cli_foreman/override_value.rb:65
523
- msgid "Could not update the override_value"
524
- msgstr ""
525
-
526
- #: lib/hammer_cli_foreman/override_value.rb:73
527
- msgid "OverrideValue deleted"
528
- msgstr ""
529
-
530
- #: lib/hammer_cli_foreman/override_value.rb:74
531
- msgid "Could not delete the override_value"
532
- msgstr ""
533
-
534
470
  #: lib/hammer_cli_foreman/exception_handler.rb:41
535
471
  msgid "Forbidden - server refused to process the request"
536
472
  msgstr "Abgelehnt - Server verweigert die Verarbeitung der Anfrage"
@@ -553,6 +489,13 @@ msgstr ""
553
489
  msgid "Provider"
554
490
  msgstr "Anbieter"
555
491
 
492
+ #: lib/hammer_cli_foreman/compute_resource.rb:23
493
+ #: lib/hammer_cli_foreman/compute_resource.rb:29
494
+ #: lib/hammer_cli_foreman/host.rb:161 lib/hammer_cli_foreman/image.rb:33
495
+ #: lib/hammer_cli_foreman/image.rb:71
496
+ msgid "UUID"
497
+ msgstr "UUID"
498
+
556
499
  #: lib/hammer_cli_foreman/compute_resource.rb:26
557
500
  #: lib/hammer_cli_foreman/compute_resource.rb:36
558
501
  msgid "Region"
@@ -571,7 +514,6 @@ msgid "Url"
571
514
  msgstr "URL"
572
515
 
573
516
  #: lib/hammer_cli_foreman/compute_resource.rb:44
574
- #: lib/hammer_cli_foreman/smart_variables.rb:52
575
517
  #: lib/hammer_cli_foreman/domain.rb:21
576
518
  #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
577
519
  msgid "Description"
@@ -789,213 +731,131 @@ msgstr "Benutzerrolle wurde entfernt"
789
731
  msgid "Could not remove the user role"
790
732
  msgstr "Benutzerrolle konnte nicht entfernt werden"
791
733
 
792
- #: lib/hammer_cli_foreman/smart_variables.rb:9
793
- #: lib/hammer_cli_foreman/puppet_class.rb:34
794
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
795
- msgid "Parameter"
796
- msgstr "Parameter"
797
-
798
- #: lib/hammer_cli_foreman/smart_variables.rb:10
799
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
800
- msgid "Default Value"
801
- msgstr "Standardwert"
802
-
803
- #: lib/hammer_cli_foreman/smart_variables.rb:11
804
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
805
- msgid "Override"
806
- msgstr "Übergehen"
807
-
808
- #: lib/hammer_cli_foreman/smart_variables.rb:32
809
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
810
- msgid "Puppet class"
811
- msgstr "Puppet Klasse"
812
-
813
- #: lib/hammer_cli_foreman/smart_variables.rb:33
814
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
815
- msgid "Class Id"
816
- msgstr "Klassenkennung"
817
-
818
- #: lib/hammer_cli_foreman/smart_variables.rb:53
819
- #: lib/hammer_cli_foreman/smart_variables.rb:57
820
- #: lib/hammer_cli_foreman/template.rb:27
821
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
822
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
823
- msgid "Type"
824
- msgstr "Typ"
825
-
826
- #: lib/hammer_cli_foreman/smart_variables.rb:54
827
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
828
- msgid "Required"
829
- msgstr "Benötigt"
830
-
831
- #: lib/hammer_cli_foreman/smart_variables.rb:56
832
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
833
- msgid "Validator"
834
- msgstr "Validator"
835
-
836
- #: lib/hammer_cli_foreman/smart_variables.rb:58
837
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
838
- msgid "Rule"
839
- msgstr "Regel"
840
-
841
- #: lib/hammer_cli_foreman/smart_variables.rb:60
842
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
843
- msgid "Override values"
844
- msgstr "Werte übergehen"
845
-
846
- #: lib/hammer_cli_foreman/smart_variables.rb:61
847
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
848
- msgid "Order"
849
- msgstr "Reihenfolge"
850
-
851
- #: lib/hammer_cli_foreman/smart_variables.rb:62
852
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
853
- msgid "Count"
854
- msgstr "Zähler"
855
-
856
- #: lib/hammer_cli_foreman/smart_variables.rb:66
857
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
858
- msgid "Match"
859
- msgstr "Übereinstimmung"
860
-
861
- #: lib/hammer_cli_foreman/smart_variables.rb:85
862
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
863
- msgid "Parameter updated"
864
- msgstr "Parameter aktualisiert"
865
-
866
- #: lib/hammer_cli_foreman/smart_variables.rb:86
867
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
868
- msgid "Could not update the parameter"
869
- msgstr "Parameter konnte nicht aktualisiert werden"
870
-
871
- #: lib/hammer_cli_foreman/smart_variables.rb:90
872
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
873
- msgid "Override this parameter."
874
- msgstr "Diesen Parameter übergehen."
875
-
876
- #: lib/hammer_cli_foreman/smart_variables.rb:92
877
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
878
- msgid "This parameter is required."
879
- msgstr "Dieser Parameter wird benötigt."
880
-
881
- #: lib/hammer_cli_foreman/smart_variables.rb:94
882
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
883
- msgid "Type of the parameter."
884
- msgstr "Typ des Parameters"
885
-
886
- #: lib/hammer_cli_foreman/smart_variables.rb:97
887
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
888
- msgid "Type of the validator."
889
- msgstr "Typ des Validators."
890
-
891
- #: lib/hammer_cli_foreman/smart_variables.rb:109
892
- msgid "Manipulate smart variables."
893
- msgstr ""
894
-
895
734
  #: lib/hammer_cli_foreman/hostgroup.rb:9
896
735
  msgid "List of puppetclass ids"
897
- msgstr ""
736
+ msgstr "Liste der Puppetklassen-IDs"
898
737
 
899
738
  #: lib/hammer_cli_foreman/hostgroup.rb:11
900
739
  msgid "Name of puppet CA proxy"
901
- msgstr ""
740
+ msgstr "Name des Puppet CA Proxy"
902
741
 
903
742
  #: lib/hammer_cli_foreman/hostgroup.rb:12
904
743
  msgid "Name of puppet proxy"
905
- msgstr ""
744
+ msgstr "Name des Puppet Proxy"
906
745
 
907
- #: lib/hammer_cli_foreman/hostgroup.rb:41
908
- msgid "Label"
909
- msgstr "Label"
746
+ #: lib/hammer_cli_foreman/hostgroup.rb:13
747
+ msgid "Name of parent hostgroup"
748
+ msgstr "Name der übergeordneten Hostgruppe"
910
749
 
911
- #: lib/hammer_cli_foreman/hostgroup.rb:43 lib/hammer_cli_foreman/host.rb:160
750
+ #: lib/hammer_cli_foreman/hostgroup.rb:48
751
+ #: lib/hammer_cli_foreman/operating_system.rb:11
752
+ msgid "Title"
753
+ msgstr "Titel"
754
+
755
+ #: lib/hammer_cli_foreman/hostgroup.rb:49 lib/hammer_cli_foreman/host.rb:130
756
+ #: lib/hammer_cli_foreman/image.rb:31
757
+ msgid "Operating System"
758
+ msgstr "Betriebssystem"
759
+
760
+ #: lib/hammer_cli_foreman/hostgroup.rb:50 lib/hammer_cli_foreman/host.rb:164
912
761
  msgid "Environment"
913
762
  msgstr "Umgebung"
914
763
 
915
- #: lib/hammer_cli_foreman/hostgroup.rb:44 lib/hammer_cli_foreman/host.rb:181
764
+ #: lib/hammer_cli_foreman/hostgroup.rb:51 lib/hammer_cli_foreman/host.rb:185
916
765
  msgid "Model"
917
766
  msgstr "Modell"
918
767
 
919
- #: lib/hammer_cli_foreman/hostgroup.rb:45
920
- msgid "Ancestry"
921
- msgstr "Abstammung"
922
-
923
- #: lib/hammer_cli_foreman/hostgroup.rb:55 lib/hammer_cli_foreman/host.rb:183
768
+ #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:187
924
769
  msgid "Subnet"
925
770
  msgstr "Subnetz"
926
771
 
927
- #: lib/hammer_cli_foreman/hostgroup.rb:57 lib/hammer_cli_foreman/host.rb:184
772
+ #: lib/hammer_cli_foreman/hostgroup.rb:63 lib/hammer_cli_foreman/host.rb:188
928
773
  msgid "Domain"
929
774
  msgstr "Domäne"
930
775
 
931
- #: lib/hammer_cli_foreman/hostgroup.rb:59 lib/hammer_cli_foreman/host.rb:187
776
+ #: lib/hammer_cli_foreman/hostgroup.rb:64 lib/hammer_cli_foreman/host.rb:192
777
+ #: lib/hammer_cli_foreman/image.rb:45
778
+ msgid "Architecture"
779
+ msgstr "Architektur"
780
+
781
+ #: lib/hammer_cli_foreman/hostgroup.rb:65 lib/hammer_cli_foreman/host.rb:191
932
782
  msgid "Partition Table"
933
783
  msgstr "Partitionstabelle"
934
784
 
935
- #: lib/hammer_cli_foreman/hostgroup.rb:60 lib/hammer_cli_foreman/host.rb:180
785
+ #: lib/hammer_cli_foreman/hostgroup.rb:66 lib/hammer_cli_foreman/host.rb:184
936
786
  msgid "Medium"
937
787
  msgstr "Medium"
938
788
 
939
- #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:179
789
+ #: lib/hammer_cli_foreman/hostgroup.rb:67 lib/hammer_cli_foreman/host.rb:183
940
790
  msgid "Puppet CA Proxy Id"
941
791
  msgstr "Puppet CA Proxy-Kennung"
942
792
 
943
- #: lib/hammer_cli_foreman/hostgroup.rb:62
793
+ #: lib/hammer_cli_foreman/hostgroup.rb:68
944
794
  msgid "Puppet Master Proxy Id"
945
795
  msgstr "Puppet Master Proxy-Kennung"
946
796
 
947
- #: lib/hammer_cli_foreman/hostgroup.rb:63
797
+ #: lib/hammer_cli_foreman/hostgroup.rb:69
948
798
  msgid "ComputeProfile"
949
799
  msgstr "Rechnerprofil"
950
800
 
951
- #: lib/hammer_cli_foreman/hostgroup.rb:76
801
+ #: lib/hammer_cli_foreman/hostgroup.rb:73
802
+ msgid "Parent Id"
803
+ msgstr "Übergeordnete Kennung"
804
+
805
+ #: lib/hammer_cli_foreman/hostgroup.rb:83
952
806
  msgid "Hostgroup created"
953
807
  msgstr "Hostgruppe erstellt"
954
808
 
955
- #: lib/hammer_cli_foreman/hostgroup.rb:77
809
+ #: lib/hammer_cli_foreman/hostgroup.rb:84
956
810
  msgid "Could not create the hostgroup"
957
811
  msgstr "Hostgruppe konnte nicht erstellt werden"
958
812
 
959
- #: lib/hammer_cli_foreman/hostgroup.rb:86
813
+ #: lib/hammer_cli_foreman/hostgroup.rb:93
960
814
  msgid "Hostgroup updated"
961
815
  msgstr "Hostgruppe aktualisiert"
962
816
 
963
- #: lib/hammer_cli_foreman/hostgroup.rb:87
817
+ #: lib/hammer_cli_foreman/hostgroup.rb:94
964
818
  msgid "Could not update the hostgroup"
965
819
  msgstr "Hostgruppe konnte nicht aktualisiert werden"
966
820
 
967
- #: lib/hammer_cli_foreman/hostgroup.rb:94
821
+ #: lib/hammer_cli_foreman/hostgroup.rb:101
968
822
  msgid "Hostgroup deleted"
969
823
  msgstr "Hostgruppe entfernt"
970
824
 
971
- #: lib/hammer_cli_foreman/hostgroup.rb:95
825
+ #: lib/hammer_cli_foreman/hostgroup.rb:102
972
826
  msgid "Could not delete the hostgroup"
973
827
  msgstr "Hostgruppe konnte nicht entfernt werden"
974
828
 
975
- #: lib/hammer_cli_foreman/hostgroup.rb:122
829
+ #: lib/hammer_cli_foreman/hostgroup.rb:129
976
830
  msgid "Create or update parameter for a hostgroup."
977
831
  msgstr "Parameter für Hostgruppe erstellen oder aktualisieren."
978
832
 
979
- #: lib/hammer_cli_foreman/hostgroup.rb:124
833
+ #: lib/hammer_cli_foreman/hostgroup.rb:131
980
834
  msgid "Hostgroup parameter updated"
981
835
  msgstr "Hostgruppen-Parameter aktualisiert"
982
836
 
983
- #: lib/hammer_cli_foreman/hostgroup.rb:125
837
+ #: lib/hammer_cli_foreman/hostgroup.rb:132
984
838
  msgid "New hostgroup parameter created"
985
839
  msgstr "Neuer Hostgruppen-Parameter erstellt"
986
840
 
987
- #: lib/hammer_cli_foreman/hostgroup.rb:126
841
+ #: lib/hammer_cli_foreman/hostgroup.rb:133
988
842
  msgid "Could not set hostgroup parameter"
989
843
  msgstr "Hostgruppen-Parameter konnte nicht gesetzt werden"
990
844
 
991
- #: lib/hammer_cli_foreman/hostgroup.rb:133
845
+ #: lib/hammer_cli_foreman/hostgroup.rb:140
992
846
  msgid "Delete parameter for a hostgroup."
993
847
  msgstr "Parameter für Hostgruppe löschen."
994
848
 
995
- #: lib/hammer_cli_foreman/hostgroup.rb:135
849
+ #: lib/hammer_cli_foreman/hostgroup.rb:142
996
850
  msgid "Hostgroup parameter deleted"
997
851
  msgstr "Hostgruppen-Parameter entfernt"
998
852
 
853
+ #: lib/hammer_cli_foreman/template.rb:27
854
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
855
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
856
+ msgid "Type"
857
+ msgstr "Typ"
858
+
999
859
  #: lib/hammer_cli_foreman/template.rb:71
1000
860
  msgid "List available config template kinds."
1001
861
  msgstr "Verfügbare Konfigurationsvorlagenarten anzeigen."
@@ -1038,245 +898,267 @@ msgstr "Konfigurationsvorlage gelöscht"
1038
898
  msgid "Could not delete the config template"
1039
899
  msgstr "Konfigurationsvorlage konnte nicht gelöscht werden"
1040
900
 
1041
- #: lib/hammer_cli_foreman/host.rb:36
901
+ #: lib/hammer_cli_foreman/host.rb:12
902
+ msgid "Login of the owner"
903
+ msgstr ""
904
+
905
+ #: lib/hammer_cli_foreman/host.rb:14
906
+ msgid "ID of the owner"
907
+ msgstr "Kennung des Eigentümers"
908
+
909
+ #: lib/hammer_cli_foreman/host.rb:39
1042
910
  msgid "Host parameters."
1043
911
  msgstr "Hostparameter."
1044
912
 
1045
- #: lib/hammer_cli_foreman/host.rb:38
913
+ #: lib/hammer_cli_foreman/host.rb:41
1046
914
  msgid "Compute resource attributes."
1047
915
  msgstr "Rechnerressourcenattribute."
1048
916
 
1049
- #: lib/hammer_cli_foreman/host.rb:40
917
+ #: lib/hammer_cli_foreman/host.rb:43
1050
918
  msgid "Volume parameters"
1051
919
  msgstr "Datenträgerparameter"
1052
920
 
1053
- #: lib/hammer_cli_foreman/host.rb:42
921
+ #: lib/hammer_cli_foreman/host.rb:45
1054
922
  msgid "Interface parameters."
1055
923
  msgstr "Schnittstellenparameter."
1056
924
 
1057
- #: lib/hammer_cli_foreman/host.rb:127
925
+ #: lib/hammer_cli_foreman/host.rb:131
1058
926
  msgid "Host Group"
1059
927
  msgstr "Hostgruppe"
1060
928
 
1061
- #: lib/hammer_cli_foreman/host.rb:128 lib/hammer_cli_foreman/host.rb:197
1062
- #: lib/hammer_cli_foreman/host.rb:210
929
+ #: lib/hammer_cli_foreman/host.rb:132 lib/hammer_cli_foreman/host.rb:201
930
+ #: lib/hammer_cli_foreman/host.rb:214
1063
931
  msgid "IP"
1064
932
  msgstr "IP"
1065
933
 
1066
- #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:198
1067
- #: lib/hammer_cli_foreman/host.rb:211
934
+ #: lib/hammer_cli_foreman/host.rb:133 lib/hammer_cli_foreman/host.rb:202
935
+ #: lib/hammer_cli_foreman/host.rb:215
1068
936
  msgid "MAC"
1069
937
  msgstr "MAC"
1070
938
 
1071
- #: lib/hammer_cli_foreman/host.rb:158
939
+ #: lib/hammer_cli_foreman/host.rb:162
1072
940
  msgid "Cert name"
1073
941
  msgstr "Zertifikatsname"
1074
942
 
1075
- #: lib/hammer_cli_foreman/host.rb:162
943
+ #: lib/hammer_cli_foreman/host.rb:166
1076
944
  msgid "Managed"
1077
945
  msgstr "Verwaltet"
1078
946
 
1079
- #: lib/hammer_cli_foreman/host.rb:163
947
+ #: lib/hammer_cli_foreman/host.rb:167
1080
948
  msgid "Enabled"
1081
949
  msgstr "Aktiviert"
1082
950
 
1083
- #: lib/hammer_cli_foreman/host.rb:164
951
+ #: lib/hammer_cli_foreman/host.rb:168
1084
952
  msgid "Build"
1085
953
  msgstr "Erstelle"
1086
954
 
1087
- #: lib/hammer_cli_foreman/host.rb:166
955
+ #: lib/hammer_cli_foreman/host.rb:170
1088
956
  msgid "Use image"
1089
957
  msgstr "Abbild verwenden"
1090
958
 
1091
- #: lib/hammer_cli_foreman/host.rb:167
959
+ #: lib/hammer_cli_foreman/host.rb:171
1092
960
  msgid "Disk"
1093
961
  msgstr "Festplatte"
1094
962
 
1095
- #: lib/hammer_cli_foreman/host.rb:168
963
+ #: lib/hammer_cli_foreman/host.rb:172
1096
964
  msgid "Image file"
1097
965
  msgstr "Abbilddatei"
1098
966
 
1099
- #: lib/hammer_cli_foreman/host.rb:170
967
+ #: lib/hammer_cli_foreman/host.rb:174
1100
968
  msgid "SP Name"
1101
969
  msgstr "SP-Name"
1102
970
 
1103
- #: lib/hammer_cli_foreman/host.rb:171
971
+ #: lib/hammer_cli_foreman/host.rb:175
1104
972
  msgid "SP IP"
1105
973
  msgstr "SP-Kennung"
1106
974
 
1107
- #: lib/hammer_cli_foreman/host.rb:172
975
+ #: lib/hammer_cli_foreman/host.rb:176
1108
976
  msgid "SP MAC"
1109
977
  msgstr "SP MAC"
1110
978
 
1111
- #: lib/hammer_cli_foreman/host.rb:174
979
+ #: lib/hammer_cli_foreman/host.rb:178
1112
980
  msgid "SP Subnet"
1113
981
  msgstr "SP-Subnetz"
1114
982
 
1115
- #: lib/hammer_cli_foreman/host.rb:176
983
+ #: lib/hammer_cli_foreman/host.rb:180
1116
984
  msgid "Installed at"
1117
985
  msgstr "Installiert um"
1118
986
 
1119
- #: lib/hammer_cli_foreman/host.rb:182
987
+ #: lib/hammer_cli_foreman/host.rb:186
1120
988
  msgid "Owner Id"
1121
989
  msgstr "Eigentümerkennung"
1122
990
 
1123
- #: lib/hammer_cli_foreman/host.rb:185
991
+ #: lib/hammer_cli_foreman/host.rb:189
1124
992
  msgid "Puppet Proxy Id"
1125
993
  msgstr "Puppet-Proxy-ID"
1126
994
 
1127
- #: lib/hammer_cli_foreman/host.rb:186
995
+ #: lib/hammer_cli_foreman/host.rb:190
1128
996
  msgid "Owner Type"
1129
997
  msgstr "Eigentümertyp"
1130
998
 
1131
- #: lib/hammer_cli_foreman/host.rb:189
999
+ #: lib/hammer_cli_foreman/host.rb:193
1132
1000
  msgid "Image"
1133
1001
  msgstr "Abbild"
1134
1002
 
1135
- #: lib/hammer_cli_foreman/host.rb:190
1003
+ #: lib/hammer_cli_foreman/host.rb:194
1136
1004
  msgid "Compute Resource"
1137
1005
  msgstr "Rechnerresource"
1138
1006
 
1139
- #: lib/hammer_cli_foreman/host.rb:192
1007
+ #: lib/hammer_cli_foreman/host.rb:196
1140
1008
  msgid "Comment"
1141
1009
  msgstr "Kommentar"
1142
1010
 
1143
- #: lib/hammer_cli_foreman/host.rb:194
1011
+ #: lib/hammer_cli_foreman/host.rb:198
1144
1012
  msgid "BMC Network Interfaces"
1145
1013
  msgstr "BMC-Netzwerkschnittstellen"
1146
1014
 
1147
- #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
1015
+ #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
1148
1016
  msgid "Domain Id"
1149
1017
  msgstr "Domain-Kennung"
1150
1018
 
1151
- #: lib/hammer_cli_foreman/host.rb:200 lib/hammer_cli_foreman/host.rb:213
1019
+ #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
1152
1020
  msgid "Domain Name"
1153
1021
  msgstr "Domainname"
1154
1022
 
1155
- #: lib/hammer_cli_foreman/host.rb:201 lib/hammer_cli_foreman/host.rb:214
1023
+ #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
1156
1024
  msgid "Subnet Id"
1157
1025
  msgstr "Subnetzkennung"
1158
1026
 
1159
- #: lib/hammer_cli_foreman/host.rb:202 lib/hammer_cli_foreman/host.rb:215
1027
+ #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
1160
1028
  msgid "Subnet Name"
1161
1029
  msgstr "Subnetzname"
1162
1030
 
1163
- #: lib/hammer_cli_foreman/host.rb:203
1031
+ #: lib/hammer_cli_foreman/host.rb:207
1164
1032
  msgid "BMC Username"
1165
1033
  msgstr "BMC-Benutzername"
1166
1034
 
1167
- #: lib/hammer_cli_foreman/host.rb:204
1035
+ #: lib/hammer_cli_foreman/host.rb:208
1168
1036
  msgid "BMC Password"
1169
1037
  msgstr "BMC-Passwort"
1170
1038
 
1171
- #: lib/hammer_cli_foreman/host.rb:207
1039
+ #: lib/hammer_cli_foreman/host.rb:211
1172
1040
  msgid "Managed Network Interfaces"
1173
1041
  msgstr "Verwaltete Netzwerkschnittstellen"
1174
1042
 
1175
- #: lib/hammer_cli_foreman/host.rb:231
1043
+ #: lib/hammer_cli_foreman/host.rb:235
1176
1044
  msgid "Status"
1177
1045
  msgstr "Status"
1178
1046
 
1179
- #: lib/hammer_cli_foreman/host.rb:232
1047
+ #: lib/hammer_cli_foreman/host.rb:236
1180
1048
  msgid "Power"
1181
1049
  msgstr "Strom"
1182
1050
 
1183
- #: lib/hammer_cli_foreman/host.rb:268
1051
+ #: lib/hammer_cli_foreman/host.rb:272
1184
1052
  msgid "Puppet run triggered"
1185
1053
  msgstr "Puppet-Durchlauf ausgelöst"
1186
1054
 
1187
- #: lib/hammer_cli_foreman/host.rb:319
1055
+ #: lib/hammer_cli_foreman/host.rb:323
1188
1056
  msgid "Host created"
1189
1057
  msgstr "Host erstellt"
1190
1058
 
1191
- #: lib/hammer_cli_foreman/host.rb:320
1059
+ #: lib/hammer_cli_foreman/host.rb:324
1192
1060
  msgid "Could not create the host"
1193
1061
  msgstr "Host konnte nicht erstellt werden"
1194
1062
 
1195
- #: lib/hammer_cli_foreman/host.rb:341
1063
+ #: lib/hammer_cli_foreman/host.rb:345
1196
1064
  msgid "Host updated"
1197
1065
  msgstr "Host aktualisiert"
1198
1066
 
1199
- #: lib/hammer_cli_foreman/host.rb:342
1067
+ #: lib/hammer_cli_foreman/host.rb:346
1200
1068
  msgid "Could not update the host"
1201
1069
  msgstr "Host konnte nicht aktualisiert werden"
1202
1070
 
1203
- #: lib/hammer_cli_foreman/host.rb:349
1071
+ #: lib/hammer_cli_foreman/host.rb:353
1204
1072
  msgid "Host deleted"
1205
1073
  msgstr "Host gelöscht"
1206
1074
 
1207
- #: lib/hammer_cli_foreman/host.rb:350
1075
+ #: lib/hammer_cli_foreman/host.rb:354
1208
1076
  msgid "Could not delete the host"
1209
1077
  msgstr "Host konnte nicht gelöscht werden"
1210
1078
 
1211
- #: lib/hammer_cli_foreman/host.rb:357
1079
+ #: lib/hammer_cli_foreman/host.rb:361
1212
1080
  msgid "Create or update parameter for a host."
1213
1081
  msgstr "Parameter für einen Host erstellen oder aktualisieren."
1214
1082
 
1215
- #: lib/hammer_cli_foreman/host.rb:359
1083
+ #: lib/hammer_cli_foreman/host.rb:363
1216
1084
  msgid "Host parameter updated"
1217
1085
  msgstr "Hostparameter aktualisiert"
1218
1086
 
1219
- #: lib/hammer_cli_foreman/host.rb:360
1087
+ #: lib/hammer_cli_foreman/host.rb:364
1220
1088
  msgid "New host parameter created"
1221
1089
  msgstr "Neuer Hostparameter erstellt"
1222
1090
 
1223
- #: lib/hammer_cli_foreman/host.rb:361
1091
+ #: lib/hammer_cli_foreman/host.rb:365
1224
1092
  msgid "Could not set host parameter"
1225
1093
  msgstr "Hostparameter konnte nicht festgelegt werden"
1226
1094
 
1227
- #: lib/hammer_cli_foreman/host.rb:373
1095
+ #: lib/hammer_cli_foreman/host.rb:377
1228
1096
  msgid "Delete parameter for a host."
1229
1097
  msgstr "Parameter für einen Host löschen."
1230
1098
 
1231
- #: lib/hammer_cli_foreman/host.rb:375
1099
+ #: lib/hammer_cli_foreman/host.rb:379
1232
1100
  msgid "Host parameter deleted"
1233
1101
  msgstr "Hostparameter gelöscht"
1234
1102
 
1235
- #: lib/hammer_cli_foreman/host.rb:390
1103
+ #: lib/hammer_cli_foreman/host.rb:394
1236
1104
  msgid "Power a host on"
1237
1105
  msgstr "Host anschalten"
1238
1106
 
1239
- #: lib/hammer_cli_foreman/host.rb:391
1107
+ #: lib/hammer_cli_foreman/host.rb:395
1240
1108
  msgid "The host is starting."
1241
1109
  msgstr "Host wird gestartet."
1242
1110
 
1243
- #: lib/hammer_cli_foreman/host.rb:408
1111
+ #: lib/hammer_cli_foreman/host.rb:412
1244
1112
  msgid "Force turning off a host"
1245
1113
  msgstr "Abschalten von Host erzwingen"
1246
1114
 
1247
- #: lib/hammer_cli_foreman/host.rb:413
1115
+ #: lib/hammer_cli_foreman/host.rb:417
1248
1116
  msgid "Power a host off"
1249
1117
  msgstr "Host ausschalten"
1250
1118
 
1251
- #: lib/hammer_cli_foreman/host.rb:425
1119
+ #: lib/hammer_cli_foreman/host.rb:429
1252
1120
  msgid "Power off forced."
1253
1121
  msgstr "Abschalten erzwingen."
1254
1122
 
1255
- #: lib/hammer_cli_foreman/host.rb:427
1123
+ #: lib/hammer_cli_foreman/host.rb:431
1256
1124
  msgid "Powering the host off."
1257
1125
  msgstr "Host wird abgeschaltet."
1258
1126
 
1259
- #: lib/hammer_cli_foreman/host.rb:444
1127
+ #: lib/hammer_cli_foreman/host.rb:448
1260
1128
  msgid "Reboot a host"
1261
1129
  msgstr "Host neustarten"
1262
1130
 
1263
- #: lib/hammer_cli_foreman/host.rb:445
1131
+ #: lib/hammer_cli_foreman/host.rb:449
1264
1132
  msgid "Host reboot started."
1265
1133
  msgstr "Host wird neu gestartet."
1266
1134
 
1267
- #: lib/hammer_cli_foreman/commands.rb:77
1135
+ #: lib/hammer_cli_foreman/commands.rb:83
1268
1136
  msgid "Received data of unknown format"
1269
1137
  msgstr "Daten in unbekanntem Format erhalten"
1270
1138
 
1271
- #: lib/hammer_cli_foreman/commands.rb:244
1139
+ #: lib/hammer_cli_foreman/commands.rb:185
1140
+ msgid ""
1141
+ "Could not find %{resource}. Some search options were missing, please see "
1142
+ "--help."
1143
+ msgstr ""
1144
+
1145
+ #: lib/hammer_cli_foreman/commands.rb:187
1146
+ msgid "Could not find %{resource}, please set option %{switches}."
1147
+ msgstr ""
1148
+
1149
+ #: lib/hammer_cli_foreman/commands.rb:189
1150
+ msgid "Could not find %{resource}, please set one of options %{switches}."
1151
+ msgstr ""
1152
+
1153
+ #: lib/hammer_cli_foreman/commands.rb:288
1272
1154
  msgid "List next page? (%s): "
1273
1155
  msgstr "Nächste Seite auflisten? (%s): "
1274
1156
 
1275
- #: lib/hammer_cli_foreman/commands.rb:448
1157
+ #: lib/hammer_cli_foreman/commands.rb:492
1276
1158
  msgid "Associate a resource"
1277
1159
  msgstr "Ressource zuweisen"
1278
1160
 
1279
- #: lib/hammer_cli_foreman/commands.rb:470
1161
+ #: lib/hammer_cli_foreman/commands.rb:514
1280
1162
  msgid "Disassociate a resource"
1281
1163
  msgstr "Ressource lösen"
1282
1164
 
@@ -1357,10 +1239,6 @@ msgstr "Externe Benutzergruppen"
1357
1239
  msgid "The server does not support such operation."
1358
1240
  msgstr "Diese Operation wird vom Server nicht unterstützt."
1359
1241
 
1360
- #: lib/hammer_cli_foreman/operating_system.rb:11
1361
- msgid "Full name"
1362
- msgstr "Vollständiger Name"
1363
-
1364
1242
  #: lib/hammer_cli_foreman/operating_system.rb:12
1365
1243
  msgid "Release name"
1366
1244
  msgstr "Release-Name"
@@ -1389,105 +1267,85 @@ msgstr "Standardvorlagen"
1389
1267
  msgid "Architectures"
1390
1268
  msgstr "Architekturen"
1391
1269
 
1392
- #: lib/hammer_cli_foreman/operating_system.rb:46
1393
- #: lib/hammer_cli_foreman/operating_system.rb:73
1394
- msgid "set associated architectures"
1395
- msgstr "Zugehörige Architekturen festlegen"
1396
-
1397
- #: lib/hammer_cli_foreman/operating_system.rb:48
1398
- #: lib/hammer_cli_foreman/operating_system.rb:75
1399
- msgid "set associated templates"
1400
- msgstr "Zugehörige Vorlagen festlegen"
1401
-
1402
- #: lib/hammer_cli_foreman/operating_system.rb:50
1403
- #: lib/hammer_cli_foreman/operating_system.rb:77
1404
- msgid "set associated installation media"
1405
- msgstr "Zugehörige Installationsmedien festlegen"
1406
-
1407
- #: lib/hammer_cli_foreman/operating_system.rb:52
1408
- #: lib/hammer_cli_foreman/operating_system.rb:79
1409
- msgid "set associated partition tables"
1410
- msgstr "Zugehörige Partitionstabellen festlegen"
1411
-
1412
- #: lib/hammer_cli_foreman/operating_system.rb:55
1270
+ #: lib/hammer_cli_foreman/operating_system.rb:44
1413
1271
  msgid "Operating system created"
1414
1272
  msgstr "Betriebssystem erstellt"
1415
1273
 
1416
- #: lib/hammer_cli_foreman/operating_system.rb:56
1274
+ #: lib/hammer_cli_foreman/operating_system.rb:45
1417
1275
  msgid "Could not create the operating system"
1418
1276
  msgstr "Betriebssystem konnte nicht erstellt werden"
1419
1277
 
1420
- #: lib/hammer_cli_foreman/operating_system.rb:82
1278
+ #: lib/hammer_cli_foreman/operating_system.rb:52
1421
1279
  msgid "Operating system updated"
1422
1280
  msgstr "Betriebssystem aktualisiert"
1423
1281
 
1424
- #: lib/hammer_cli_foreman/operating_system.rb:83
1282
+ #: lib/hammer_cli_foreman/operating_system.rb:53
1425
1283
  msgid "Could not update the operating system"
1426
1284
  msgstr "Betriebssystem konnte nicht aktualisiert werden"
1427
1285
 
1428
- #: lib/hammer_cli_foreman/operating_system.rb:99
1286
+ #: lib/hammer_cli_foreman/operating_system.rb:60
1429
1287
  msgid "Operating system deleted"
1430
1288
  msgstr "Betriebssystem entfernt"
1431
1289
 
1432
- #: lib/hammer_cli_foreman/operating_system.rb:100
1290
+ #: lib/hammer_cli_foreman/operating_system.rb:61
1433
1291
  msgid "Could not delete the operating system"
1434
1292
  msgstr "Betriebssystem konnte nicht gelöscht werden"
1435
1293
 
1436
- #: lib/hammer_cli_foreman/operating_system.rb:107
1294
+ #: lib/hammer_cli_foreman/operating_system.rb:68
1437
1295
  msgid "Create or update parameter for an operating system."
1438
1296
  msgstr "Parameter für ein Betriebssystem konnten nicht erstellt oder aktualisiert werden."
1439
1297
 
1440
- #: lib/hammer_cli_foreman/operating_system.rb:109
1298
+ #: lib/hammer_cli_foreman/operating_system.rb:70
1441
1299
  msgid "Operating system parameter updated"
1442
1300
  msgstr "Betriebssystemparameter aktualisiert"
1443
1301
 
1444
- #: lib/hammer_cli_foreman/operating_system.rb:110
1302
+ #: lib/hammer_cli_foreman/operating_system.rb:71
1445
1303
  msgid "New operating system parameter created"
1446
1304
  msgstr "Neuer Betriebssystemparameter erstellt"
1447
1305
 
1448
- #: lib/hammer_cli_foreman/operating_system.rb:111
1306
+ #: lib/hammer_cli_foreman/operating_system.rb:72
1449
1307
  msgid "Could not set operating system parameter"
1450
1308
  msgstr "Betriebssystemparameter konnte nicht festgelegt werden"
1451
1309
 
1452
- #: lib/hammer_cli_foreman/operating_system.rb:123
1310
+ #: lib/hammer_cli_foreman/operating_system.rb:84
1453
1311
  msgid "Delete parameter for an operating system."
1454
1312
  msgstr "Parameter für ein Betriebssystem löschen."
1455
1313
 
1456
- #: lib/hammer_cli_foreman/operating_system.rb:125
1314
+ #: lib/hammer_cli_foreman/operating_system.rb:86
1457
1315
  msgid "operating system parameter deleted"
1458
1316
  msgstr "Betriebssystemparameter gelöscht"
1459
1317
 
1460
- #: lib/hammer_cli_foreman/operating_system.rb:140
1461
- #: lib/hammer_cli_foreman/operating_system.rb:206
1318
+ #: lib/hammer_cli_foreman/operating_system.rb:101
1319
+ #: lib/hammer_cli_foreman/operating_system.rb:167
1462
1320
  msgid "operatingsystem id"
1463
1321
  msgstr "Betriebssystemkennung"
1464
1322
 
1465
- #: lib/hammer_cli_foreman/operating_system.rb:141
1323
+ #: lib/hammer_cli_foreman/operating_system.rb:102
1466
1324
  msgid "config template id to be set"
1467
1325
  msgstr "ID der festzulegenden Konfigurationsvorlage"
1468
1326
 
1469
- #: lib/hammer_cli_foreman/operating_system.rb:144
1327
+ #: lib/hammer_cli_foreman/operating_system.rb:105
1470
1328
  msgid ""
1471
1329
  "[%{config_template_name}] was set as default %{template_kind_name} template"
1472
1330
  msgstr "[%{config_template_name}] wurde als standardmäßige %{template_kind_name} Vorlage festgelegt"
1473
1331
 
1474
- #: lib/hammer_cli_foreman/operating_system.rb:145
1332
+ #: lib/hammer_cli_foreman/operating_system.rb:106
1475
1333
  msgid "Could not set the os default template"
1476
1334
  msgstr "Betriebssystem-Standardvorlage konnte nicht festgelegt werden"
1477
1335
 
1478
- #: lib/hammer_cli_foreman/operating_system.rb:207
1336
+ #: lib/hammer_cli_foreman/operating_system.rb:168
1479
1337
  msgid "Type of the config template"
1480
1338
  msgstr "Typ der Konfigurationsvorlage"
1481
1339
 
1482
- #: lib/hammer_cli_foreman/operating_system.rb:209
1340
+ #: lib/hammer_cli_foreman/operating_system.rb:170
1483
1341
  msgid "Default template deleted"
1484
1342
  msgstr "Standardvorlage gelöscht"
1485
1343
 
1486
- #: lib/hammer_cli_foreman/operating_system.rb:210
1344
+ #: lib/hammer_cli_foreman/operating_system.rb:171
1487
1345
  msgid "Could not delete the default template"
1488
1346
  msgstr "Standardvorlage konnte nicht gelöscht werden"
1489
1347
 
1490
- #: lib/hammer_cli_foreman/operating_system.rb:217
1348
+ #: lib/hammer_cli_foreman/operating_system.rb:178
1491
1349
  msgid "Default template of type %s not found"
1492
1350
  msgstr "Standardvorlage von Typ %s nicht gefunden"
1493
1351
 
@@ -1572,6 +1430,11 @@ msgstr "Umgebung konnte nicht gelöscht werden"
1572
1430
  msgid "Smart variables"
1573
1431
  msgstr "Smart variables"
1574
1432
 
1433
+ #: lib/hammer_cli_foreman/puppet_class.rb:34
1434
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
1435
+ msgid "Parameter"
1436
+ msgstr "Parameter"
1437
+
1575
1438
  #: lib/hammer_cli_foreman/puppet_class.rb:35
1576
1439
  msgid "Default value"
1577
1440
  msgstr "Standardwert"
@@ -1636,6 +1499,74 @@ msgstr "Parameter für eine Domain löschen."
1636
1499
  msgid "Domain parameter deleted"
1637
1500
  msgstr "Domainparameter gelöscht"
1638
1501
 
1502
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
1503
+ msgid "Default Value"
1504
+ msgstr "Standardwert"
1505
+
1506
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
1507
+ msgid "Override"
1508
+ msgstr "Übergehen"
1509
+
1510
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
1511
+ msgid "Puppet class"
1512
+ msgstr "Puppet Klasse"
1513
+
1514
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
1515
+ msgid "Class Id"
1516
+ msgstr "Klassenkennung"
1517
+
1518
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
1519
+ msgid "Required"
1520
+ msgstr "Benötigt"
1521
+
1522
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
1523
+ msgid "Validator"
1524
+ msgstr "Validator"
1525
+
1526
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
1527
+ msgid "Rule"
1528
+ msgstr "Regel"
1529
+
1530
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
1531
+ msgid "Override values"
1532
+ msgstr "Werte übergehen"
1533
+
1534
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
1535
+ msgid "Order"
1536
+ msgstr "Reihenfolge"
1537
+
1538
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
1539
+ msgid "Count"
1540
+ msgstr "Zähler"
1541
+
1542
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
1543
+ msgid "Match"
1544
+ msgstr "Übereinstimmung"
1545
+
1546
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
1547
+ msgid "Parameter updated"
1548
+ msgstr "Parameter aktualisiert"
1549
+
1550
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
1551
+ msgid "Could not update the parameter"
1552
+ msgstr "Parameter konnte nicht aktualisiert werden"
1553
+
1554
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
1555
+ msgid "Override this parameter."
1556
+ msgstr "Diesen Parameter übergehen."
1557
+
1558
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
1559
+ msgid "This parameter is required."
1560
+ msgstr "Dieser Parameter wird benötigt."
1561
+
1562
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
1563
+ msgid "Type of the parameter."
1564
+ msgstr "Typ des Parameters"
1565
+
1566
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
1567
+ msgid "Type of the validator."
1568
+ msgstr "Typ des Validators."
1569
+
1639
1570
  #: lib/hammer_cli_foreman/auth.rb:7
1640
1571
  msgid "Set credentials"
1641
1572
  msgstr "Anmeldedaten festlegen"
@@ -1690,6 +1621,14 @@ msgstr "Benutzergruppe konnte nicht gelöscht werden"
1690
1621
  msgid "View and manage compute resource's images"
1691
1622
  msgstr "Images der Rechnerressource anzeigen und verwalten"
1692
1623
 
1624
+ #: lib/hammer_cli_foreman/image.rb:32
1625
+ msgid "Username"
1626
+ msgstr "Benutzername"
1627
+
1628
+ #: lib/hammer_cli_foreman/image.rb:46
1629
+ msgid "IAM role"
1630
+ msgstr "IAM-Rolle"
1631
+
1693
1632
  #: lib/hammer_cli_foreman/image.rb:56
1694
1633
  msgid "Show images available for addition"
1695
1634
  msgstr "Verfügbare Images anzeigen"
@@ -1751,103 +1690,111 @@ msgstr "Partitionstabelle gelöscht"
1751
1690
  msgid "Could not delete the partition table"
1752
1691
  msgstr "Partitionstabelle konnte nicht gelöscht werden"
1753
1692
 
1754
- #: lib/hammer_cli_foreman/credentials.rb:10
1755
- msgid "[Foreman] username: "
1693
+ #: lib/hammer_cli_foreman/credentials.rb:26
1694
+ msgid "[Foreman] Username: "
1756
1695
  msgstr "[Foreman]-Benutzername: "
1757
1696
 
1758
- #: lib/hammer_cli_foreman/credentials.rb:15
1759
- msgid "[Foreman] password for %s: "
1697
+ #: lib/hammer_cli_foreman/credentials.rb:33
1698
+ msgid "[Foreman] Password for %s: "
1760
1699
  msgstr "[Foreman]-Passwort für %s: "
1761
1700
 
1762
- #: lib/hammer_cli_foreman/id_resolver.rb:32
1701
+ #: lib/hammer_cli_foreman/id_resolver.rb:36
1763
1702
  msgid "Architecture name"
1764
1703
  msgstr "Architekturname"
1765
1704
 
1766
- #: lib/hammer_cli_foreman/id_resolver.rb:33
1705
+ #: lib/hammer_cli_foreman/id_resolver.rb:37
1767
1706
  msgid "Compute resource name"
1768
1707
  msgstr "Rechnerressourcenname"
1769
1708
 
1770
- #: lib/hammer_cli_foreman/id_resolver.rb:34
1709
+ #: lib/hammer_cli_foreman/id_resolver.rb:38
1771
1710
  msgid "Domain name"
1772
1711
  msgstr "Domainname"
1773
1712
 
1774
- #: lib/hammer_cli_foreman/id_resolver.rb:35
1713
+ #: lib/hammer_cli_foreman/id_resolver.rb:39
1775
1714
  msgid "Environment name"
1776
1715
  msgstr "Umgebungsname"
1777
1716
 
1778
- #: lib/hammer_cli_foreman/id_resolver.rb:38
1717
+ #: lib/hammer_cli_foreman/id_resolver.rb:42
1779
1718
  msgid "Host name"
1780
1719
  msgstr "Host name"
1781
1720
 
1782
- #: lib/hammer_cli_foreman/id_resolver.rb:39
1721
+ #: lib/hammer_cli_foreman/id_resolver.rb:43
1783
1722
  msgid "Hostgroup name"
1784
1723
  msgstr "Hostgruppenname"
1785
1724
 
1786
- #: lib/hammer_cli_foreman/id_resolver.rb:41
1725
+ #: lib/hammer_cli_foreman/id_resolver.rb:45
1787
1726
  msgid "Location name"
1788
1727
  msgstr "Standortname"
1789
1728
 
1790
- #: lib/hammer_cli_foreman/id_resolver.rb:42
1729
+ #: lib/hammer_cli_foreman/id_resolver.rb:46
1791
1730
  msgid "Medium name"
1792
1731
  msgstr "Mediumname"
1793
1732
 
1794
- #: lib/hammer_cli_foreman/id_resolver.rb:43
1733
+ #: lib/hammer_cli_foreman/id_resolver.rb:47
1795
1734
  msgid "Model name"
1796
1735
  msgstr "Modellname"
1797
1736
 
1798
- #: lib/hammer_cli_foreman/id_resolver.rb:44
1737
+ #: lib/hammer_cli_foreman/id_resolver.rb:48
1799
1738
  msgid "Organization name"
1800
1739
  msgstr "Organisationsname"
1801
1740
 
1802
- #: lib/hammer_cli_foreman/id_resolver.rb:46
1741
+ #: lib/hammer_cli_foreman/id_resolver.rb:49
1742
+ msgid "Operating system title"
1743
+ msgstr "Betriebssystemname"
1744
+
1745
+ #: lib/hammer_cli_foreman/id_resolver.rb:50
1803
1746
  msgid "Partition table name"
1804
1747
  msgstr "Partitionstabellenname"
1805
1748
 
1806
- #: lib/hammer_cli_foreman/id_resolver.rb:47
1749
+ #: lib/hammer_cli_foreman/id_resolver.rb:51
1807
1750
  msgid "Proxy name"
1808
1751
  msgstr "Proxyname"
1809
1752
 
1810
- #: lib/hammer_cli_foreman/id_resolver.rb:48
1753
+ #: lib/hammer_cli_foreman/id_resolver.rb:52
1811
1754
  msgid "Puppet class name"
1812
1755
  msgstr "Puppet-Klassenname"
1813
1756
 
1814
- #: lib/hammer_cli_foreman/id_resolver.rb:49
1757
+ #: lib/hammer_cli_foreman/id_resolver.rb:53
1815
1758
  msgid "Report name"
1816
1759
  msgstr "Berichtsname"
1817
1760
 
1818
- #: lib/hammer_cli_foreman/id_resolver.rb:50
1761
+ #: lib/hammer_cli_foreman/id_resolver.rb:54
1819
1762
  msgid "User role name"
1820
1763
  msgstr "Benutzerrollenname"
1821
1764
 
1822
- #: lib/hammer_cli_foreman/id_resolver.rb:51
1765
+ #: lib/hammer_cli_foreman/id_resolver.rb:55
1823
1766
  msgid "Subnet name"
1824
1767
  msgstr "Subnetzname"
1825
1768
 
1826
- #: lib/hammer_cli_foreman/id_resolver.rb:53
1769
+ #: lib/hammer_cli_foreman/id_resolver.rb:57
1827
1770
  msgid "User's login to search by"
1828
1771
  msgstr "Zu suchender Benutzername"
1829
1772
 
1830
- #: lib/hammer_cli_foreman/id_resolver.rb:54
1773
+ #: lib/hammer_cli_foreman/id_resolver.rb:58
1831
1774
  msgid "Common parameter name"
1832
1775
  msgstr "Allgemeiner Parametername"
1833
1776
 
1834
- #: lib/hammer_cli_foreman/id_resolver.rb:55
1777
+ #: lib/hammer_cli_foreman/id_resolver.rb:59
1835
1778
  msgid "Smart class parameter name"
1836
1779
  msgstr "Smart-Class-Parametername"
1837
1780
 
1838
- #: lib/hammer_cli_foreman/id_resolver.rb:57
1781
+ #: lib/hammer_cli_foreman/id_resolver.rb:61
1839
1782
  msgid "Name to search by"
1840
1783
  msgstr "Zu suchender Name"
1841
1784
 
1842
- #: lib/hammer_cli_foreman/id_resolver.rb:140
1785
+ #: lib/hammer_cli_foreman/id_resolver.rb:149
1786
+ msgid "one of %s not found"
1787
+ msgstr ""
1788
+
1789
+ #: lib/hammer_cli_foreman/id_resolver.rb:191
1843
1790
  msgid "%s not found"
1844
1791
  msgstr "%s nicht gefunden"
1845
1792
 
1846
- #: lib/hammer_cli_foreman/id_resolver.rb:141
1793
+ #: lib/hammer_cli_foreman/id_resolver.rb:192
1847
1794
  msgid "%s found more than once"
1848
1795
  msgstr "%s mehr als einmal gefunden"
1849
1796
 
1850
- #: lib/hammer_cli_foreman/id_resolver.rb:152
1797
+ #: lib/hammer_cli_foreman/id_resolver.rb:203
1851
1798
  msgid "Missing options to search %s"
1852
1799
  msgstr "Fehlende Optionen zum Suchen von %s"
1853
1800