hammer_cli_foreman 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of hammer_cli_foreman might be problematic. Click here for more details.

Files changed (340) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -2
  3. data/doc/host_create.md +15 -7
  4. data/doc/release_notes.md +11 -0
  5. data/lib/hammer_cli_foreman/commands.rb +5 -1
  6. data/lib/hammer_cli_foreman/defaults.rb +29 -0
  7. data/lib/hammer_cli_foreman/host.rb +8 -1
  8. data/lib/hammer_cli_foreman/id_resolver.rb +1 -1
  9. data/lib/hammer_cli_foreman/location.rb +21 -0
  10. data/lib/hammer_cli_foreman/organization.rb +21 -0
  11. data/lib/hammer_cli_foreman/parameter.rb +7 -7
  12. data/lib/hammer_cli_foreman/role.rb +13 -0
  13. data/lib/hammer_cli_foreman/subnet.rb +1 -1
  14. data/lib/hammer_cli_foreman/version.rb +1 -1
  15. data/lib/hammer_cli_foreman.rb +2 -0
  16. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  17. data/locale/de/hammer-cli-foreman.edit.po +394 -423
  18. data/locale/de/hammer-cli-foreman.po +1920 -1511
  19. data/locale/en/hammer-cli-foreman.edit.po +188 -124
  20. data/locale/en/hammer-cli-foreman.po +49 -1
  21. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  22. data/locale/en_GB/hammer-cli-foreman.edit.po +208 -152
  23. data/locale/en_GB/hammer-cli-foreman.po +1554 -1145
  24. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  25. data/locale/es/hammer-cli-foreman.edit.po +438 -464
  26. data/locale/es/hammer-cli-foreman.po +1930 -1519
  27. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  28. data/locale/fr/hammer-cli-foreman.edit.po +301 -328
  29. data/locale/fr/hammer-cli-foreman.po +1922 -1513
  30. data/locale/hammer-cli-foreman.pot +194 -127
  31. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  32. data/locale/it/hammer-cli-foreman.edit.po +303 -331
  33. data/locale/it/hammer-cli-foreman.po +1909 -1500
  34. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  35. data/locale/ja/hammer-cli-foreman.edit.po +302 -330
  36. data/locale/ja/hammer-cli-foreman.po +1920 -1511
  37. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  38. data/locale/ko/hammer-cli-foreman.edit.po +303 -332
  39. data/locale/ko/hammer-cli-foreman.po +1910 -1501
  40. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  41. data/locale/pt_BR/hammer-cli-foreman.edit.po +369 -393
  42. data/locale/pt_BR/hammer-cli-foreman.po +1916 -1506
  43. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  44. data/locale/ru/hammer-cli-foreman.edit.po +344 -372
  45. data/locale/ru/hammer-cli-foreman.po +1940 -1531
  46. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  47. data/locale/zh_CN/hammer-cli-foreman.edit.po +303 -331
  48. data/locale/zh_CN/hammer-cli-foreman.po +1905 -1496
  49. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  50. data/locale/zh_TW/hammer-cli-foreman.edit.po +306 -334
  51. data/locale/zh_TW/hammer-cli-foreman.po +1908 -1499
  52. data/test/functional/api_expectations.rb +65 -0
  53. data/test/functional/command_assertions.rb +76 -0
  54. data/test/functional/location_test.rb +140 -0
  55. data/test/functional/organization_test.rb +140 -0
  56. data/test/functional/test_helper.rb +7 -0
  57. data/test/test_helper.rb +27 -0
  58. data/test/unit/apipie_resource_mock.rb +24 -6
  59. data/test/unit/architecture_test.rb +1 -1
  60. data/test/unit/auth_source_ldap_test.rb +1 -3
  61. data/test/unit/common_parameter_test.rb +1 -1
  62. data/test/unit/compute_resource_test.rb +1 -1
  63. data/test/unit/data/1.10/foreman_api.json +1 -0
  64. data/test/unit/data/README.md +22 -0
  65. data/test/unit/data/test_api.json +609 -0
  66. data/test/unit/defaults_test.rb +32 -0
  67. data/test/unit/dependency_resolver_test.rb +21 -16
  68. data/test/unit/domain_test.rb +1 -1
  69. data/test/unit/environment_test.rb +1 -1
  70. data/test/unit/external_usergroup_test.rb +1 -1
  71. data/test/unit/helpers/command.rb +5 -1
  72. data/test/unit/host_test.rb +16 -8
  73. data/test/unit/hostgroup_test.rb +1 -1
  74. data/test/unit/id_resolver_test.rb +40 -37
  75. data/test/unit/image_test.rb +1 -3
  76. data/test/unit/location_test.rb +1 -1
  77. data/test/unit/media_test.rb +3 -3
  78. data/test/unit/model_test.rb +1 -1
  79. data/test/unit/operating_system_test.rb +1 -2
  80. data/test/unit/option_builders_test.rb +106 -116
  81. data/test/unit/organization_test.rb +1 -1
  82. data/test/unit/partition_table_test.rb +1 -1
  83. data/test/unit/puppet_class_test.rb +4 -1
  84. data/test/unit/report_test.rb +1 -1
  85. data/test/unit/role_test.rb +15 -0
  86. data/test/unit/smart_class_parameter_test.rb +1 -1
  87. data/test/unit/smart_proxy_test.rb +1 -1
  88. data/test/unit/smart_variable_test.rb +1 -1
  89. data/test/unit/subnet_test.rb +1 -1
  90. data/test/unit/template_test.rb +1 -1
  91. data/test/unit/test_helper.rb +2 -29
  92. data/test/unit/user_test.rb +1 -2
  93. metadata +67 -539
  94. data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml +0 -11
  95. data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml +0 -7
  96. data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml +0 -13
  97. data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml +0 -7
  98. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml +0 -13
  99. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml +0 -13
  100. data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml +0 -7
  101. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml +0 -13
  102. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml +0 -17
  103. data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml +0 -7
  104. data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml +0 -15
  105. data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml +0 -7
  106. data/test/reports/TEST-HammerCLIForeman-Architecture.xml +0 -7
  107. data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml +0 -11
  108. data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml +0 -7
  109. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml +0 -13
  110. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml +0 -17
  111. data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml +0 -7
  112. data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml +0 -13
  113. data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml +0 -7
  114. data/test/reports/TEST-HammerCLIForeman-CommonParameter.xml +0 -7
  115. data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml +0 -15
  116. data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml +0 -7
  117. data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml +0 -13
  118. data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml +0 -7
  119. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml +0 -17
  120. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml +0 -13
  121. data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml +0 -7
  122. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml +0 -15
  123. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml +0 -17
  124. data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml +0 -7
  125. data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml +0 -15
  126. data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml +0 -7
  127. data/test/reports/TEST-HammerCLIForeman-ComputeResource.xml +0 -7
  128. data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml +0 -11
  129. data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml +0 -7
  130. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml +0 -13
  131. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml +0 -7
  132. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml +0 -15
  133. data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml +0 -7
  134. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml +0 -21
  135. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml +0 -13
  136. data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml +0 -7
  137. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml +0 -13
  138. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml +0 -17
  139. data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml +0 -7
  140. data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml +0 -17
  141. data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml +0 -7
  142. data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml +0 -15
  143. data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml +0 -7
  144. data/test/reports/TEST-HammerCLIForeman-Domain.xml +0 -7
  145. data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml +0 -11
  146. data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml +0 -7
  147. data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml +0 -13
  148. data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml +0 -7
  149. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml +0 -17
  150. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml +0 -13
  151. data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml +0 -7
  152. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml +0 -13
  153. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml +0 -17
  154. data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml +0 -7
  155. data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml +0 -15
  156. data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml +0 -7
  157. data/test/reports/TEST-HammerCLIForeman-Environment.xml +0 -7
  158. data/test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml +0 -13
  159. data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml +0 -46
  160. data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml +0 -7
  161. data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml +0 -13
  162. data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml +0 -7
  163. data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml +0 -15
  164. data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml +0 -7
  165. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml +0 -85
  166. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml +0 -13
  167. data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml +0 -7
  168. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml +0 -21
  169. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml +0 -17
  170. data/test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml +0 -7
  171. data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml +0 -9
  172. data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml +0 -7
  173. data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml +0 -17
  174. data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml +0 -7
  175. data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml +0 -9
  176. data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml +0 -7
  177. data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml +0 -40
  178. data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml +0 -7
  179. data/test/reports/TEST-HammerCLIForeman-Host.xml +0 -7
  180. data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml +0 -11
  181. data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml +0 -7
  182. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml +0 -11
  183. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml +0 -7
  184. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml +0 -13
  185. data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml +0 -7
  186. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml +0 -29
  187. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml +0 -11
  188. data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml +0 -7
  189. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml +0 -27
  190. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml +0 -17
  191. data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml +0 -7
  192. data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml +0 -15
  193. data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml +0 -7
  194. data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml +0 -13
  195. data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml +0 -7
  196. data/test/reports/TEST-HammerCLIForeman-Hostgroup.xml +0 -7
  197. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml +0 -11
  198. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml +0 -11
  199. data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml +0 -7
  200. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml +0 -13
  201. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml +0 -11
  202. data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml +0 -7
  203. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml +0 -17
  204. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml +0 -13
  205. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml +0 -11
  206. data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml +0 -7
  207. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml +0 -13
  208. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml +0 -17
  209. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml +0 -11
  210. data/test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml +0 -7
  211. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml +0 -15
  212. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml +0 -11
  213. data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml +0 -7
  214. data/test/reports/TEST-HammerCLIForeman-Location.xml +0 -7
  215. data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml +0 -13
  216. data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml +0 -7
  217. data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml +0 -13
  218. data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml +0 -7
  219. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml +0 -23
  220. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml +0 -13
  221. data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml +0 -7
  222. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml +0 -15
  223. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml +0 -17
  224. data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml +0 -7
  225. data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml +0 -17
  226. data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml +0 -7
  227. data/test/reports/TEST-HammerCLIForeman-Medium.xml +0 -7
  228. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml +0 -11
  229. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml +0 -7
  230. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml +0 -13
  231. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml +0 -7
  232. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml +0 -13
  233. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml +0 -7
  234. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml +0 -27
  235. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml +0 -13
  236. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml +0 -7
  237. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml +0 -17
  238. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml +0 -17
  239. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml +0 -7
  240. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml +0 -15
  241. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml +0 -7
  242. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml +0 -17
  243. data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml +0 -7
  244. data/test/reports/TEST-HammerCLIForeman-OperatingSystem.xml +0 -7
  245. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml +0 -11
  246. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml +0 -11
  247. data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml +0 -7
  248. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml +0 -13
  249. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml +0 -11
  250. data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml +0 -7
  251. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml +0 -17
  252. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml +0 -13
  253. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml +0 -11
  254. data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml +0 -7
  255. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml +0 -13
  256. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml +0 -17
  257. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml +0 -11
  258. data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml +0 -7
  259. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml +0 -15
  260. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml +0 -11
  261. data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml +0 -7
  262. data/test/reports/TEST-HammerCLIForeman-Organization.xml +0 -7
  263. data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml +0 -13
  264. data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml +0 -7
  265. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml +0 -13
  266. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml +0 -7
  267. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml +0 -15
  268. data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml +0 -7
  269. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml +0 -19
  270. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml +0 -13
  271. data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml +0 -7
  272. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml +0 -15
  273. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml +0 -17
  274. data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml +0 -7
  275. data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml +0 -13
  276. data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml +0 -7
  277. data/test/reports/TEST-HammerCLIForeman-PartitionTable.xml +0 -7
  278. data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml +0 -13
  279. data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml +0 -7
  280. data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml +0 -13
  281. data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml +0 -7
  282. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml +0 -21
  283. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml +0 -13
  284. data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml +0 -7
  285. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml +0 -15
  286. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml +0 -11
  287. data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml +0 -7
  288. data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml +0 -15
  289. data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml +0 -7
  290. data/test/reports/TEST-HammerCLIForeman-SmartProxy.xml +0 -7
  291. data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml +0 -15
  292. data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml +0 -7
  293. data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml +0 -13
  294. data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml +0 -7
  295. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml +0 -43
  296. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml +0 -13
  297. data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml +0 -7
  298. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml +0 -17
  299. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml +0 -17
  300. data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml +0 -7
  301. data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml +0 -15
  302. data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml +0 -7
  303. data/test/reports/TEST-HammerCLIForeman-Subnet.xml +0 -7
  304. data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml +0 -15
  305. data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml +0 -7
  306. data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml +0 -11
  307. data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml +0 -7
  308. data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml +0 -12
  309. data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml +0 -7
  310. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml +0 -17
  311. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml +0 -11
  312. data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml +0 -7
  313. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml +0 -15
  314. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml +0 -17
  315. data/test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml +0 -7
  316. data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml +0 -9
  317. data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml +0 -7
  318. data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml +0 -11
  319. data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml +0 -7
  320. data/test/reports/TEST-HammerCLIForeman-Template.xml +0 -7
  321. data/test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml +0 -19
  322. data/test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml +0 -7
  323. data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml +0 -11
  324. data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml +0 -7
  325. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml +0 -23
  326. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml +0 -11
  327. data/test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml +0 -7
  328. data/test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml +0 -17
  329. data/test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml +0 -17
  330. data/test/reports/TEST-HammerCLIForeman-User-ListCommand.xml +0 -7
  331. data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml +0 -11
  332. data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml +0 -7
  333. data/test/reports/TEST-HammerCLIForeman-User.xml +0 -7
  334. data/test/reports/TEST-MiniTest-Spec.xml +0 -7
  335. data/test/unit/data/1.4/foreman_api.json +0 -10387
  336. data/test/unit/data/1.5/foreman_api.json +0 -14130
  337. data/test/unit/data/1.6/foreman_api.json +0 -1
  338. data/test/unit/data/1.6/foreman_api_back.json +0 -1
  339. data/test/unit/data/1.6/whatever.json +0 -1
  340. data/test/unit/data/1.7/foreman_api.json +0 -1
@@ -455,6 +455,9 @@ msgstr ""
455
455
  msgid "[Foreman] Password for %s: "
456
456
  msgstr ""
457
457
 
458
+ msgid "Use the default organization and/or location from the server"
459
+ msgstr ""
460
+
458
461
  msgid "ID of DNS proxy to use within this domain"
459
462
  msgstr ""
460
463
 
@@ -988,7 +991,7 @@ msgstr ""
988
991
  msgid "%s not found"
989
992
  msgstr ""
990
993
 
991
- msgid "%s found more than once"
994
+ msgid "found more than one %s"
992
995
  msgstr ""
993
996
 
994
997
  msgid "Missing options to search %s"
@@ -1121,6 +1124,27 @@ msgstr ""
1121
1124
  msgid "Could not delete the location"
1122
1125
  msgstr ""
1123
1126
 
1127
+ msgid "Create or update parameter for a location."
1128
+ msgstr ""
1129
+
1130
+ msgid "Parameter [%{name}] updated to value [%{value}]"
1131
+ msgstr ""
1132
+
1133
+ msgid "Parameter [%{name}] created with value [%{value}]"
1134
+ msgstr ""
1135
+
1136
+ msgid "Could not set location parameter"
1137
+ msgstr ""
1138
+
1139
+ msgid "Delete parameter for a location."
1140
+ msgstr ""
1141
+
1142
+ msgid "Parameter [%{name}] deleted"
1143
+ msgstr ""
1144
+
1145
+ msgid "Could not delete location parameter"
1146
+ msgstr ""
1147
+
1124
1148
  msgid "Path"
1125
1149
  msgstr ""
1126
1150
 
@@ -1274,6 +1298,18 @@ msgstr ""
1274
1298
  msgid "Could not delete the organization"
1275
1299
  msgstr ""
1276
1300
 
1301
+ msgid "Create or update parameter for an organization."
1302
+ msgstr ""
1303
+
1304
+ msgid "Could not set organization parameter"
1305
+ msgstr ""
1306
+
1307
+ msgid "Delete parameter for an organization."
1308
+ msgstr ""
1309
+
1310
+ msgid "Could not delete organization parameter"
1311
+ msgstr ""
1312
+
1277
1313
  msgid "View partition table content."
1278
1314
  msgstr ""
1279
1315
 
@@ -1433,6 +1469,15 @@ msgstr ""
1433
1469
  msgid "The server does not support such operation."
1434
1470
  msgstr ""
1435
1471
 
1472
+ msgid "Builtin"
1473
+ msgstr ""
1474
+
1475
+ msgid "No"
1476
+ msgstr ""
1477
+
1478
+ msgid "Yes"
1479
+ msgstr ""
1480
+
1436
1481
  msgid "User role id"
1437
1482
  msgstr ""
1438
1483
 
@@ -1613,6 +1658,9 @@ msgstr ""
1613
1658
  msgid "DHCP"
1614
1659
  msgstr ""
1615
1660
 
1661
+ msgid "IPAM"
1662
+ msgstr ""
1663
+
1616
1664
  msgid "VLAN ID"
1617
1665
  msgstr ""
1618
1666
 
@@ -3,135 +3,135 @@
3
3
  # This file is distributed under the same license as the hammer-cli-foreman package.
4
4
  #
5
5
  # Translators:
6
- # Dominic Cleal <dcleal@redhat.com>, 2014
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014-2015
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: hammer-cli-foreman 0.3.0\n"
9
+ "Project-Id-Version: hammer-cli-foreman 0.4.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2015-09-21 16:50+0200\n"
12
- "PO-Revision-Date: 2015-07-22 22:56+0000\n"
13
- "Last-Translator: Lukáš Zapletal\n"
14
- "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/f"
15
- "oreman/language/en_GB/)\n"
11
+ "POT-Creation-Date: 2015-12-11 04:48+0000\n"
12
+ "PO-Revision-Date: 2015-11-22 01:47+0000\n"
13
+ "Last-Translator: Dominic Cleal <dcleal@redhat.com>\n"
14
+ "Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/fore"
15
+ "man/language/en_GB/)\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Language: en_GB\n"
20
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
21
 
22
- #: ../lib/hammer_cli_foreman.rb:30
22
+ #: ../lib/hammer_cli_foreman.rb:32
23
23
  msgid "Foreman connection login/logout."
24
24
  msgstr ""
25
25
 
26
- #: ../lib/hammer_cli_foreman.rb:34
26
+ #: ../lib/hammer_cli_foreman.rb:36
27
27
  msgid "Manipulate architectures."
28
28
  msgstr ""
29
29
 
30
- #: ../lib/hammer_cli_foreman.rb:38
30
+ #: ../lib/hammer_cli_foreman.rb:40
31
31
  msgid "Manipulate auth sources."
32
32
  msgstr ""
33
33
 
34
- #: ../lib/hammer_cli_foreman.rb:42
34
+ #: ../lib/hammer_cli_foreman.rb:44
35
35
  msgid "Manipulate compute resources."
36
36
  msgstr ""
37
37
 
38
- #: ../lib/hammer_cli_foreman.rb:46
38
+ #: ../lib/hammer_cli_foreman.rb:48
39
39
  msgid "Manipulate domains."
40
40
  msgstr ""
41
41
 
42
- #: ../lib/hammer_cli_foreman.rb:50
42
+ #: ../lib/hammer_cli_foreman.rb:52
43
43
  msgid "Manipulate environments."
44
44
  msgstr ""
45
45
 
46
- #: ../lib/hammer_cli_foreman.rb:54
46
+ #: ../lib/hammer_cli_foreman.rb:56
47
47
  msgid "Search facts."
48
48
  msgstr ""
49
49
 
50
- #: ../lib/hammer_cli_foreman.rb:58
50
+ #: ../lib/hammer_cli_foreman.rb:60
51
51
  msgid "Manage permission filters."
52
52
  msgstr ""
53
53
 
54
- #: ../lib/hammer_cli_foreman.rb:62
54
+ #: ../lib/hammer_cli_foreman.rb:64
55
55
  msgid "Manipulate hosts."
56
56
  msgstr ""
57
57
 
58
- #: ../lib/hammer_cli_foreman.rb:66
58
+ #: ../lib/hammer_cli_foreman.rb:68
59
59
  msgid "Manipulate hostgroups."
60
60
  msgstr ""
61
61
 
62
- #: ../lib/hammer_cli_foreman.rb:70
62
+ #: ../lib/hammer_cli_foreman.rb:72
63
63
  msgid "Manipulate locations."
64
64
  msgstr ""
65
65
 
66
- #: ../lib/hammer_cli_foreman.rb:74
66
+ #: ../lib/hammer_cli_foreman.rb:76
67
67
  msgid "Manipulate installation media."
68
68
  msgstr ""
69
69
 
70
- #: ../lib/hammer_cli_foreman.rb:78
70
+ #: ../lib/hammer_cli_foreman.rb:80
71
71
  msgid "Manipulate hardware models."
72
72
  msgstr ""
73
73
 
74
- #: ../lib/hammer_cli_foreman.rb:82
74
+ #: ../lib/hammer_cli_foreman.rb:84
75
75
  msgid "Manipulate operating system."
76
76
  msgstr ""
77
77
 
78
- #: ../lib/hammer_cli_foreman.rb:86
78
+ #: ../lib/hammer_cli_foreman.rb:88
79
79
  msgid "Manipulate organizations."
80
80
  msgstr "Manipulate organisations."
81
81
 
82
- #: ../lib/hammer_cli_foreman.rb:90
82
+ #: ../lib/hammer_cli_foreman.rb:92
83
83
  msgid "Manipulate partition tables."
84
84
  msgstr ""
85
85
 
86
- #: ../lib/hammer_cli_foreman.rb:94
86
+ #: ../lib/hammer_cli_foreman.rb:96
87
87
  msgid "Search puppet modules."
88
88
  msgstr ""
89
89
 
90
- #: ../lib/hammer_cli_foreman.rb:98
90
+ #: ../lib/hammer_cli_foreman.rb:100
91
91
  msgid "Browse and read reports."
92
92
  msgstr ""
93
93
 
94
- #: ../lib/hammer_cli_foreman.rb:102
94
+ #: ../lib/hammer_cli_foreman.rb:104
95
95
  msgid "Manage user roles."
96
96
  msgstr ""
97
97
 
98
- #: ../lib/hammer_cli_foreman.rb:106
98
+ #: ../lib/hammer_cli_foreman.rb:108
99
99
  msgid "Manipulate smart class parameters."
100
100
  msgstr ""
101
101
 
102
- #: ../lib/hammer_cli_foreman.rb:110
102
+ #: ../lib/hammer_cli_foreman.rb:112
103
103
  msgid "Manipulate smart variables."
104
104
  msgstr ""
105
105
 
106
- #: ../lib/hammer_cli_foreman.rb:114
106
+ #: ../lib/hammer_cli_foreman.rb:116
107
107
  msgid "Manipulate smart proxies."
108
108
  msgstr ""
109
109
 
110
- #: ../lib/hammer_cli_foreman.rb:118
110
+ #: ../lib/hammer_cli_foreman.rb:120
111
111
  msgid "Change server settings."
112
112
  msgstr ""
113
113
 
114
- #: ../lib/hammer_cli_foreman.rb:122
114
+ #: ../lib/hammer_cli_foreman.rb:124
115
115
  msgid "Manipulate subnets."
116
116
  msgstr ""
117
117
 
118
- #: ../lib/hammer_cli_foreman.rb:126
118
+ #: ../lib/hammer_cli_foreman.rb:128
119
119
  msgid "Manipulate config templates."
120
120
  msgstr ""
121
121
 
122
- #: ../lib/hammer_cli_foreman.rb:130
122
+ #: ../lib/hammer_cli_foreman.rb:132
123
123
  msgid "Manipulate users."
124
124
  msgstr ""
125
125
 
126
- #: ../lib/hammer_cli_foreman.rb:134
126
+ #: ../lib/hammer_cli_foreman.rb:136
127
127
  msgid "Manage user groups."
128
128
  msgstr ""
129
129
 
130
- #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:200 ../lib/hammer_cli_foreman/host.rb:231 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
130
+ #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:170 ../lib/hammer_cli_foreman/host.rb:207 ../lib/hammer_cli_foreman/host.rb:238 ../lib/hammer_cli_foreman/hostgroup.rb:57 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:63 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
131
131
  msgid "Id"
132
- msgstr ""
132
+ msgstr "Id"
133
133
 
134
- #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:202 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
134
+ #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:171 ../lib/hammer_cli_foreman/host.rb:209 ../lib/hammer_cli_foreman/hostgroup.rb:58 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
135
135
  msgid "Name"
136
136
  msgstr "Name"
137
137
 
@@ -224,9 +224,8 @@ msgid "The user has been associated"
224
224
  msgstr ""
225
225
 
226
226
  #: ../lib/hammer_cli_foreman/associating_commands.rb:150
227
- #, fuzzy
228
227
  msgid "Could not associate the user"
229
- msgstr "Could not create the host"
228
+ msgstr ""
230
229
 
231
230
  #: ../lib/hammer_cli_foreman/associating_commands.rb:155
232
231
  msgid "Disassociate an user"
@@ -478,31 +477,31 @@ msgstr ""
478
477
  msgid "Could not update the Auth Source"
479
478
  msgstr ""
480
479
 
481
- #: ../lib/hammer_cli_foreman/commands.rb:83
480
+ #: ../lib/hammer_cli_foreman/commands.rb:87
482
481
  msgid "Received data of unknown format"
483
482
  msgstr ""
484
483
 
485
- #: ../lib/hammer_cli_foreman/commands.rb:191
484
+ #: ../lib/hammer_cli_foreman/commands.rb:195
486
485
  msgid "Could not find %{resource}. Some search options were missing, please see --help."
487
486
  msgstr ""
488
487
 
489
- #: ../lib/hammer_cli_foreman/commands.rb:193
488
+ #: ../lib/hammer_cli_foreman/commands.rb:197
490
489
  msgid "Could not find %{resource}, please set option %{switches}."
491
490
  msgstr ""
492
491
 
493
- #: ../lib/hammer_cli_foreman/commands.rb:195
492
+ #: ../lib/hammer_cli_foreman/commands.rb:199
494
493
  msgid "Could not find %{resource}, please set one of options %{switches}."
495
494
  msgstr ""
496
495
 
497
- #: ../lib/hammer_cli_foreman/commands.rb:517
496
+ #: ../lib/hammer_cli_foreman/commands.rb:521
498
497
  msgid "Associate a resource"
499
498
  msgstr ""
500
499
 
501
- #: ../lib/hammer_cli_foreman/commands.rb:539
500
+ #: ../lib/hammer_cli_foreman/commands.rb:543
502
501
  msgid "Disassociate a resource"
503
502
  msgstr ""
504
503
 
505
- #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:327 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
504
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:334 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:77 ../lib/hammer_cli_foreman/smart_variable.rb:65
506
505
  msgid "Value"
507
506
  msgstr "Value"
508
507
 
@@ -542,7 +541,7 @@ msgstr ""
542
541
  msgid "Provider"
543
542
  msgstr ""
544
543
 
545
- #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:201 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
544
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
546
545
  msgid "UUID"
547
546
  msgstr ""
548
547
 
@@ -602,6 +601,10 @@ msgstr ""
602
601
  msgid "[Foreman] Password for %s: "
603
602
  msgstr ""
604
603
 
604
+ #: ../lib/hammer_cli_foreman/defaults.rb:7
605
+ msgid "Use the default organization and/or location from the server"
606
+ msgstr ""
607
+
605
608
  #: ../lib/hammer_cli_foreman/domain.rb:6
606
609
  msgid "ID of DNS proxy to use within this domain"
607
610
  msgstr ""
@@ -696,15 +699,15 @@ msgstr ""
696
699
 
697
700
  #: ../lib/hammer_cli_foreman/exception_handler.rb:75
698
701
  msgid "Could not load the API description from the server"
699
- msgstr ""
702
+ msgstr "Could not load the API description from the server"
700
703
 
701
704
  #: ../lib/hammer_cli_foreman/exception_handler.rb:76
702
705
  msgid "is the server down?"
703
- msgstr ""
706
+ msgstr "is the server down?"
704
707
 
705
708
  #: ../lib/hammer_cli_foreman/exception_handler.rb:77
706
709
  msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
707
- msgstr ""
710
+ msgstr "was '%s' run on the server when using apipie cache? (typical production settings)"
708
711
 
709
712
  #: ../lib/hammer_cli_foreman/external_usergroup.rb:6
710
713
  msgid "View and manage user group's external user groups"
@@ -746,7 +749,7 @@ msgstr ""
746
749
  msgid "Host"
747
750
  msgstr "Host"
748
751
 
749
- #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:326
752
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
750
753
  msgid "Fact"
751
754
  msgstr "Fact"
752
755
 
@@ -770,11 +773,11 @@ msgstr ""
770
773
  msgid "Permissions"
771
774
  msgstr ""
772
775
 
773
- #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:33
776
+ #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:46
774
777
  msgid "(Miscellaneous)"
775
778
  msgstr ""
776
779
 
777
- #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:34
780
+ #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
778
781
  msgid "none"
779
782
  msgstr ""
780
783
 
@@ -814,304 +817,303 @@ msgstr ""
814
817
  msgid "ID of the owner"
815
818
  msgstr ""
816
819
 
817
- #: ../lib/hammer_cli_foreman/host.rb:42
820
+ #: ../lib/hammer_cli_foreman/host.rb:44
818
821
  msgid "Host parameters."
819
822
  msgstr ""
820
823
 
821
- #: ../lib/hammer_cli_foreman/host.rb:44
824
+ #: ../lib/hammer_cli_foreman/host.rb:46
822
825
  msgid "Compute resource attributes."
823
826
  msgstr ""
824
827
 
825
- #: ../lib/hammer_cli_foreman/host.rb:46
828
+ #: ../lib/hammer_cli_foreman/host.rb:48
826
829
  msgid "Volume parameters"
827
830
  msgstr ""
828
831
 
829
- #: ../lib/hammer_cli_foreman/host.rb:48
832
+ #: ../lib/hammer_cli_foreman/host.rb:50
830
833
  msgid "Interface parameters."
831
834
  msgstr ""
832
835
 
833
- #: ../lib/hammer_cli_foreman/host.rb:62
836
+ #: ../lib/hammer_cli_foreman/host.rb:64
834
837
  msgid "Enter the root password for the host:"
835
838
  msgstr ""
836
839
 
837
- #: ../lib/hammer_cli_foreman/host.rb:146
840
+ #: ../lib/hammer_cli_foreman/host.rb:153
838
841
  msgid "At least one interface must be set as primary"
839
842
  msgstr ""
840
843
 
841
- #: ../lib/hammer_cli_foreman/host.rb:149
844
+ #: ../lib/hammer_cli_foreman/host.rb:156
842
845
  msgid "At least one interface must be set as provision"
843
846
  msgstr ""
844
847
 
845
- #: ../lib/hammer_cli_foreman/host.rb:165 ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
848
+ #: ../lib/hammer_cli_foreman/host.rb:172 ../lib/hammer_cli_foreman/host.rb:248 ../lib/hammer_cli_foreman/hostgroup.rb:60 ../lib/hammer_cli_foreman/image.rb:31
846
849
  msgid "Operating System"
847
850
  msgstr ""
848
851
 
849
- #: ../lib/hammer_cli_foreman/host.rb:166 ../lib/hammer_cli_foreman/host.rb:205
852
+ #: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
850
853
  msgid "Host Group"
851
854
  msgstr "Host Group"
852
855
 
853
- #: ../lib/hammer_cli_foreman/host.rb:167 ../lib/hammer_cli_foreman/host.rb:218
856
+ #: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
854
857
  msgid "IP"
855
858
  msgstr "IP"
856
859
 
857
- #: ../lib/hammer_cli_foreman/host.rb:168 ../lib/hammer_cli_foreman/host.rb:219
860
+ #: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
858
861
  msgid "MAC"
859
862
  msgstr "MAC"
860
863
 
861
- #: ../lib/hammer_cli_foreman/host.rb:178
864
+ #: ../lib/hammer_cli_foreman/host.rb:185
862
865
  msgid "Bare Metal"
863
866
  msgstr ""
864
867
 
865
- #: ../lib/hammer_cli_foreman/host.rb:203
866
- #, fuzzy
868
+ #: ../lib/hammer_cli_foreman/host.rb:210
867
869
  msgid "Organization"
868
- msgstr "Organisations"
870
+ msgstr "Organisation"
869
871
 
870
- #: ../lib/hammer_cli_foreman/host.rb:204
872
+ #: ../lib/hammer_cli_foreman/host.rb:211
871
873
  msgid "Location"
872
874
  msgstr ""
873
875
 
874
- #: ../lib/hammer_cli_foreman/host.rb:206
876
+ #: ../lib/hammer_cli_foreman/host.rb:213
875
877
  msgid "Compute Resource"
876
878
  msgstr ""
877
879
 
878
- #: ../lib/hammer_cli_foreman/host.rb:207
880
+ #: ../lib/hammer_cli_foreman/host.rb:214
879
881
  msgid "Compute Profile"
880
882
  msgstr ""
881
883
 
882
- #: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/hostgroup.rb:61
884
+ #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/hostgroup.rb:61
883
885
  msgid "Environment"
884
886
  msgstr ""
885
887
 
886
- #: ../lib/hammer_cli_foreman/host.rb:209
888
+ #: ../lib/hammer_cli_foreman/host.rb:216
887
889
  msgid "Puppet CA Id"
888
890
  msgstr ""
889
891
 
890
- #: ../lib/hammer_cli_foreman/host.rb:210
892
+ #: ../lib/hammer_cli_foreman/host.rb:217
891
893
  msgid "Puppet Master Id"
892
894
  msgstr ""
893
895
 
894
- #: ../lib/hammer_cli_foreman/host.rb:211
896
+ #: ../lib/hammer_cli_foreman/host.rb:218
895
897
  msgid "Cert name"
896
898
  msgstr ""
897
899
 
898
- #: ../lib/hammer_cli_foreman/host.rb:212 ../lib/hammer_cli_foreman/interface.rb:51
900
+ #: ../lib/hammer_cli_foreman/host.rb:219 ../lib/hammer_cli_foreman/interface.rb:51
899
901
  msgid "Managed"
900
902
  msgstr ""
901
903
 
902
- #: ../lib/hammer_cli_foreman/host.rb:214
904
+ #: ../lib/hammer_cli_foreman/host.rb:221
903
905
  msgid "Installed at"
904
906
  msgstr ""
905
907
 
906
- #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/report.rb:12
908
+ #: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
907
909
  msgid "Last report"
908
910
  msgstr "Last report"
909
911
 
910
- #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/subnet.rb:12
912
+ #: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
911
913
  msgid "Network"
912
914
  msgstr ""
913
915
 
914
- #: ../lib/hammer_cli_foreman/host.rb:220 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
916
+ #: ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
915
917
  msgid "Subnet"
916
918
  msgstr "Subnet"
917
919
 
918
- #: ../lib/hammer_cli_foreman/host.rb:221 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
920
+ #: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
919
921
  msgid "Domain"
920
922
  msgstr "Domain"
921
923
 
922
- #: ../lib/hammer_cli_foreman/host.rb:222
924
+ #: ../lib/hammer_cli_foreman/host.rb:229
923
925
  msgid "Service provider"
924
926
  msgstr ""
925
927
 
926
- #: ../lib/hammer_cli_foreman/host.rb:223
928
+ #: ../lib/hammer_cli_foreman/host.rb:230
927
929
  msgid "SP Name"
928
930
  msgstr ""
929
931
 
930
- #: ../lib/hammer_cli_foreman/host.rb:224
932
+ #: ../lib/hammer_cli_foreman/host.rb:231
931
933
  msgid "SP IP"
932
934
  msgstr ""
933
935
 
934
- #: ../lib/hammer_cli_foreman/host.rb:225
936
+ #: ../lib/hammer_cli_foreman/host.rb:232
935
937
  msgid "SP MAC"
936
938
  msgstr ""
937
939
 
938
- #: ../lib/hammer_cli_foreman/host.rb:226
940
+ #: ../lib/hammer_cli_foreman/host.rb:233
939
941
  msgid "SP Subnet"
940
942
  msgstr ""
941
943
 
942
- #: ../lib/hammer_cli_foreman/host.rb:230
944
+ #: ../lib/hammer_cli_foreman/host.rb:237
943
945
  msgid "Network interfaces"
944
946
  msgstr ""
945
947
 
946
- #: ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
948
+ #: ../lib/hammer_cli_foreman/host.rb:239 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
947
949
  msgid "Identifier"
948
950
  msgstr ""
949
951
 
950
- #: ../lib/hammer_cli_foreman/host.rb:233 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
952
+ #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
951
953
  msgid "Type"
952
954
  msgstr "Type"
953
955
 
954
- #: ../lib/hammer_cli_foreman/host.rb:234 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
956
+ #: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
955
957
  msgid "MAC address"
956
958
  msgstr ""
957
959
 
958
- #: ../lib/hammer_cli_foreman/host.rb:235 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
960
+ #: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
959
961
  msgid "IP address"
960
962
  msgstr ""
961
963
 
962
- #: ../lib/hammer_cli_foreman/host.rb:236
964
+ #: ../lib/hammer_cli_foreman/host.rb:243
963
965
  msgid "FQDN"
964
966
  msgstr ""
965
967
 
966
- #: ../lib/hammer_cli_foreman/host.rb:239
968
+ #: ../lib/hammer_cli_foreman/host.rb:246
967
969
  msgid "Operating system"
968
970
  msgstr ""
969
971
 
970
- #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
972
+ #: ../lib/hammer_cli_foreman/host.rb:247 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
971
973
  msgid "Architecture"
972
974
  msgstr ""
973
975
 
974
- #: ../lib/hammer_cli_foreman/host.rb:244
976
+ #: ../lib/hammer_cli_foreman/host.rb:251
975
977
  msgid "Build"
976
978
  msgstr ""
977
979
 
978
- #: ../lib/hammer_cli_foreman/host.rb:245 ../lib/hammer_cli_foreman/hostgroup.rb:77
980
+ #: ../lib/hammer_cli_foreman/host.rb:252 ../lib/hammer_cli_foreman/hostgroup.rb:77
979
981
  msgid "Medium"
980
982
  msgstr ""
981
983
 
982
- #: ../lib/hammer_cli_foreman/host.rb:246 ../lib/hammer_cli_foreman/hostgroup.rb:76
984
+ #: ../lib/hammer_cli_foreman/host.rb:253 ../lib/hammer_cli_foreman/hostgroup.rb:76
983
985
  msgid "Partition Table"
984
986
  msgstr ""
985
987
 
986
- #: ../lib/hammer_cli_foreman/host.rb:247
988
+ #: ../lib/hammer_cli_foreman/host.rb:254
987
989
  msgid "Custom partition table"
988
990
  msgstr ""
989
991
 
990
- #: ../lib/hammer_cli_foreman/host.rb:250
992
+ #: ../lib/hammer_cli_foreman/host.rb:257
991
993
  msgid "Image"
992
994
  msgstr ""
993
995
 
994
- #: ../lib/hammer_cli_foreman/host.rb:251
996
+ #: ../lib/hammer_cli_foreman/host.rb:258
995
997
  msgid "Image file"
996
998
  msgstr ""
997
999
 
998
- #: ../lib/hammer_cli_foreman/host.rb:252
1000
+ #: ../lib/hammer_cli_foreman/host.rb:259
999
1001
  msgid "Use image"
1000
1002
  msgstr ""
1001
1003
 
1002
- #: ../lib/hammer_cli_foreman/host.rb:258
1004
+ #: ../lib/hammer_cli_foreman/host.rb:265
1003
1005
  msgid "Additional info"
1004
1006
  msgstr ""
1005
1007
 
1006
- #: ../lib/hammer_cli_foreman/host.rb:259
1008
+ #: ../lib/hammer_cli_foreman/host.rb:266
1007
1009
  msgid "Owner Id"
1008
1010
  msgstr ""
1009
1011
 
1010
- #: ../lib/hammer_cli_foreman/host.rb:260
1012
+ #: ../lib/hammer_cli_foreman/host.rb:267
1011
1013
  msgid "Owner Type"
1012
1014
  msgstr ""
1013
1015
 
1014
- #: ../lib/hammer_cli_foreman/host.rb:261
1016
+ #: ../lib/hammer_cli_foreman/host.rb:268
1015
1017
  msgid "Enabled"
1016
1018
  msgstr "Enabled"
1017
1019
 
1018
- #: ../lib/hammer_cli_foreman/host.rb:262 ../lib/hammer_cli_foreman/hostgroup.rb:62
1020
+ #: ../lib/hammer_cli_foreman/host.rb:269 ../lib/hammer_cli_foreman/hostgroup.rb:62
1019
1021
  msgid "Model"
1020
1022
  msgstr "Model"
1021
1023
 
1022
- #: ../lib/hammer_cli_foreman/host.rb:263
1024
+ #: ../lib/hammer_cli_foreman/host.rb:270
1023
1025
  msgid "Comment"
1024
1026
  msgstr ""
1025
1027
 
1026
- #: ../lib/hammer_cli_foreman/host.rb:276
1028
+ #: ../lib/hammer_cli_foreman/host.rb:283
1027
1029
  msgid "Status"
1028
1030
  msgstr ""
1029
1031
 
1030
- #: ../lib/hammer_cli_foreman/host.rb:277
1032
+ #: ../lib/hammer_cli_foreman/host.rb:284
1031
1033
  msgid "Power"
1032
1034
  msgstr ""
1033
1035
 
1034
- #: ../lib/hammer_cli_foreman/host.rb:313
1036
+ #: ../lib/hammer_cli_foreman/host.rb:320
1035
1037
  msgid "Puppet run triggered"
1036
1038
  msgstr ""
1037
1039
 
1038
- #: ../lib/hammer_cli_foreman/host.rb:366
1040
+ #: ../lib/hammer_cli_foreman/host.rb:373
1039
1041
  msgid "Host created"
1040
1042
  msgstr "Host created"
1041
1043
 
1042
- #: ../lib/hammer_cli_foreman/host.rb:367
1044
+ #: ../lib/hammer_cli_foreman/host.rb:374
1043
1045
  msgid "Could not create the host"
1044
1046
  msgstr "Could not create the host"
1045
1047
 
1046
- #: ../lib/hammer_cli_foreman/host.rb:388
1048
+ #: ../lib/hammer_cli_foreman/host.rb:395
1047
1049
  msgid "Host updated"
1048
1050
  msgstr ""
1049
1051
 
1050
- #: ../lib/hammer_cli_foreman/host.rb:389
1052
+ #: ../lib/hammer_cli_foreman/host.rb:396
1051
1053
  msgid "Could not update the host"
1052
1054
  msgstr ""
1053
1055
 
1054
- #: ../lib/hammer_cli_foreman/host.rb:396
1056
+ #: ../lib/hammer_cli_foreman/host.rb:403
1055
1057
  msgid "Host deleted"
1056
1058
  msgstr "Host deleted"
1057
1059
 
1058
- #: ../lib/hammer_cli_foreman/host.rb:397
1060
+ #: ../lib/hammer_cli_foreman/host.rb:404
1059
1061
  msgid "Could not delete the host"
1060
1062
  msgstr "Could not delete the host"
1061
1063
 
1062
- #: ../lib/hammer_cli_foreman/host.rb:404
1064
+ #: ../lib/hammer_cli_foreman/host.rb:411
1063
1065
  msgid "Create or update parameter for a host."
1064
1066
  msgstr ""
1065
1067
 
1066
- #: ../lib/hammer_cli_foreman/host.rb:406
1068
+ #: ../lib/hammer_cli_foreman/host.rb:413
1067
1069
  msgid "Host parameter updated"
1068
1070
  msgstr ""
1069
1071
 
1070
- #: ../lib/hammer_cli_foreman/host.rb:407
1072
+ #: ../lib/hammer_cli_foreman/host.rb:414
1071
1073
  msgid "New host parameter created"
1072
1074
  msgstr ""
1073
1075
 
1074
- #: ../lib/hammer_cli_foreman/host.rb:408
1076
+ #: ../lib/hammer_cli_foreman/host.rb:415
1075
1077
  msgid "Could not set host parameter"
1076
1078
  msgstr ""
1077
1079
 
1078
- #: ../lib/hammer_cli_foreman/host.rb:420
1080
+ #: ../lib/hammer_cli_foreman/host.rb:427
1079
1081
  msgid "Delete parameter for a host."
1080
1082
  msgstr ""
1081
1083
 
1082
- #: ../lib/hammer_cli_foreman/host.rb:422
1084
+ #: ../lib/hammer_cli_foreman/host.rb:429
1083
1085
  msgid "Host parameter deleted"
1084
1086
  msgstr ""
1085
1087
 
1086
- #: ../lib/hammer_cli_foreman/host.rb:437
1088
+ #: ../lib/hammer_cli_foreman/host.rb:444
1087
1089
  msgid "Power a host on"
1088
1090
  msgstr ""
1089
1091
 
1090
- #: ../lib/hammer_cli_foreman/host.rb:438
1092
+ #: ../lib/hammer_cli_foreman/host.rb:445
1091
1093
  msgid "The host is starting."
1092
1094
  msgstr ""
1093
1095
 
1094
- #: ../lib/hammer_cli_foreman/host.rb:455
1096
+ #: ../lib/hammer_cli_foreman/host.rb:462
1095
1097
  msgid "Force turning off a host"
1096
1098
  msgstr ""
1097
1099
 
1098
- #: ../lib/hammer_cli_foreman/host.rb:460
1100
+ #: ../lib/hammer_cli_foreman/host.rb:467
1099
1101
  msgid "Power a host off"
1100
1102
  msgstr ""
1101
1103
 
1102
- #: ../lib/hammer_cli_foreman/host.rb:472
1104
+ #: ../lib/hammer_cli_foreman/host.rb:479
1103
1105
  msgid "Power off forced."
1104
1106
  msgstr ""
1105
1107
 
1106
- #: ../lib/hammer_cli_foreman/host.rb:474
1108
+ #: ../lib/hammer_cli_foreman/host.rb:481
1107
1109
  msgid "Powering the host off."
1108
1110
  msgstr ""
1109
1111
 
1110
- #: ../lib/hammer_cli_foreman/host.rb:491
1112
+ #: ../lib/hammer_cli_foreman/host.rb:498
1111
1113
  msgid "Reboot a host"
1112
1114
  msgstr "Reboot a host"
1113
1115
 
1114
- #: ../lib/hammer_cli_foreman/host.rb:492
1116
+ #: ../lib/hammer_cli_foreman/host.rb:499
1115
1117
  msgid "Host reboot started."
1116
1118
  msgstr ""
1117
1119
 
@@ -1312,7 +1314,7 @@ msgid "%s not found"
1312
1314
  msgstr ""
1313
1315
 
1314
1316
  #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1315
- msgid "%s found more than once"
1317
+ msgid "found more than one %s"
1316
1318
  msgstr ""
1317
1319
 
1318
1320
  #: ../lib/hammer_cli_foreman/id_resolver.rb:212
@@ -1404,9 +1406,8 @@ msgid "Bond"
1404
1406
  msgstr ""
1405
1407
 
1406
1408
  #: ../lib/hammer_cli_foreman/interface.rb:64
1407
- #, fuzzy
1408
1409
  msgid "Mode"
1409
- msgstr "Model"
1410
+ msgstr ""
1410
1411
 
1411
1412
  #: ../lib/hammer_cli_foreman/interface.rb:65
1412
1413
  msgid "Attached devices"
@@ -1429,9 +1430,8 @@ msgid "Interface created"
1429
1430
  msgstr ""
1430
1431
 
1431
1432
  #: ../lib/hammer_cli_foreman/interface.rb:129
1432
- #, fuzzy
1433
1433
  msgid "Could not create the interface"
1434
- msgstr "Could not create the host"
1434
+ msgstr ""
1435
1435
 
1436
1436
  #: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
1437
1437
  msgid "Compute resource specific attributes."
@@ -1450,9 +1450,8 @@ msgid "Interface deleted"
1450
1450
  msgstr ""
1451
1451
 
1452
1452
  #: ../lib/hammer_cli_foreman/interface.rb:155
1453
- #, fuzzy
1454
1453
  msgid "Could not delete the interface"
1455
- msgstr "Could not delete the host"
1454
+ msgstr ""
1456
1455
 
1457
1456
  #: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
1458
1457
  msgid "Location numeric id to search by"
@@ -1486,6 +1485,34 @@ msgstr ""
1486
1485
  msgid "Could not delete the location"
1487
1486
  msgstr ""
1488
1487
 
1488
+ #: ../lib/hammer_cli_foreman/location.rb:86
1489
+ msgid "Create or update parameter for a location."
1490
+ msgstr ""
1491
+
1492
+ #: ../lib/hammer_cli_foreman/location.rb:88 ../lib/hammer_cli_foreman/organization.rb:89
1493
+ msgid "Parameter [%{name}] updated to value [%{value}]"
1494
+ msgstr ""
1495
+
1496
+ #: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
1497
+ msgid "Parameter [%{name}] created with value [%{value}]"
1498
+ msgstr ""
1499
+
1500
+ #: ../lib/hammer_cli_foreman/location.rb:90
1501
+ msgid "Could not set location parameter"
1502
+ msgstr ""
1503
+
1504
+ #: ../lib/hammer_cli_foreman/location.rb:97
1505
+ msgid "Delete parameter for a location."
1506
+ msgstr ""
1507
+
1508
+ #: ../lib/hammer_cli_foreman/location.rb:99 ../lib/hammer_cli_foreman/organization.rb:100
1509
+ msgid "Parameter [%{name}] deleted"
1510
+ msgstr ""
1511
+
1512
+ #: ../lib/hammer_cli_foreman/location.rb:100
1513
+ msgid "Could not delete location parameter"
1514
+ msgstr ""
1515
+
1489
1516
  #: ../lib/hammer_cli_foreman/media.rb:11
1490
1517
  msgid "Path"
1491
1518
  msgstr ""
@@ -1690,6 +1717,22 @@ msgstr "Organisation deleted"
1690
1717
  msgid "Could not delete the organization"
1691
1718
  msgstr "Could not delete the organisation"
1692
1719
 
1720
+ #: ../lib/hammer_cli_foreman/organization.rb:87
1721
+ msgid "Create or update parameter for an organization."
1722
+ msgstr ""
1723
+
1724
+ #: ../lib/hammer_cli_foreman/organization.rb:91
1725
+ msgid "Could not set organization parameter"
1726
+ msgstr ""
1727
+
1728
+ #: ../lib/hammer_cli_foreman/organization.rb:98
1729
+ msgid "Delete parameter for an organization."
1730
+ msgstr ""
1731
+
1732
+ #: ../lib/hammer_cli_foreman/organization.rb:101
1733
+ msgid "Could not delete organization parameter"
1734
+ msgstr ""
1735
+
1693
1736
  #: ../lib/hammer_cli_foreman/partition_table.rb:31
1694
1737
  msgid "View partition table content."
1695
1738
  msgstr ""
@@ -1888,7 +1931,7 @@ msgstr "Logs"
1888
1931
 
1889
1932
  #: ../lib/hammer_cli_foreman/report.rb:65
1890
1933
  msgid "Message"
1891
- msgstr ""
1934
+ msgstr "Message"
1892
1935
 
1893
1936
  #: ../lib/hammer_cli_foreman/report.rb:76
1894
1937
  msgid "Report has been deleted"
@@ -1902,31 +1945,43 @@ msgstr ""
1902
1945
  msgid "The server does not support such operation."
1903
1946
  msgstr ""
1904
1947
 
1905
- #: ../lib/hammer_cli_foreman/role.rb:23
1948
+ #: ../lib/hammer_cli_foreman/role.rb:20
1949
+ msgid "Builtin"
1950
+ msgstr ""
1951
+
1952
+ #: ../lib/hammer_cli_foreman/role.rb:24
1953
+ msgid "No"
1954
+ msgstr ""
1955
+
1956
+ #: ../lib/hammer_cli_foreman/role.rb:24
1957
+ msgid "Yes"
1958
+ msgstr ""
1959
+
1960
+ #: ../lib/hammer_cli_foreman/role.rb:36
1906
1961
  msgid "User role id"
1907
1962
  msgstr ""
1908
1963
 
1909
- #: ../lib/hammer_cli_foreman/role.rb:47
1964
+ #: ../lib/hammer_cli_foreman/role.rb:60
1910
1965
  msgid "User role [%<name>s] created"
1911
1966
  msgstr ""
1912
1967
 
1913
- #: ../lib/hammer_cli_foreman/role.rb:48
1968
+ #: ../lib/hammer_cli_foreman/role.rb:61
1914
1969
  msgid "Could not create the user role"
1915
1970
  msgstr ""
1916
1971
 
1917
- #: ../lib/hammer_cli_foreman/role.rb:55
1972
+ #: ../lib/hammer_cli_foreman/role.rb:68
1918
1973
  msgid "User role [%<name>s] updated"
1919
1974
  msgstr ""
1920
1975
 
1921
- #: ../lib/hammer_cli_foreman/role.rb:56
1976
+ #: ../lib/hammer_cli_foreman/role.rb:69
1922
1977
  msgid "Could not update the user role"
1923
1978
  msgstr ""
1924
1979
 
1925
- #: ../lib/hammer_cli_foreman/role.rb:63
1980
+ #: ../lib/hammer_cli_foreman/role.rb:76
1926
1981
  msgid "User role [%<name>s] deleted"
1927
1982
  msgstr ""
1928
1983
 
1929
- #: ../lib/hammer_cli_foreman/role.rb:64
1984
+ #: ../lib/hammer_cli_foreman/role.rb:77
1930
1985
  msgid "Could not delete the user roles"
1931
1986
  msgstr ""
1932
1987
 
@@ -1935,9 +1990,8 @@ msgid "Setting [%{name}] updated to [%{value}]"
1935
1990
  msgstr ""
1936
1991
 
1937
1992
  #: ../lib/hammer_cli_foreman/settings.rb:29
1938
- #, fuzzy
1939
1993
  msgid "Could not update the setting"
1940
- msgstr "Could not update the organisation"
1994
+ msgstr ""
1941
1995
 
1942
1996
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
1943
1997
  msgid "Default Value"
@@ -1988,9 +2042,8 @@ msgid "Order"
1988
2042
  msgstr ""
1989
2043
 
1990
2044
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_variable.rb:62
1991
- #, fuzzy
1992
2045
  msgid "Values"
1993
- msgstr "Value"
2046
+ msgstr ""
1994
2047
 
1995
2048
  #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
1996
2049
  msgid "Match"
@@ -2038,7 +2091,7 @@ msgstr ""
2038
2091
 
2039
2092
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2040
2093
  msgid "URL"
2041
- msgstr ""
2094
+ msgstr "URL"
2042
2095
 
2043
2096
  #: ../lib/hammer_cli_foreman/smart_proxy.rb:14 ../lib/hammer_cli_foreman/smart_proxy.rb:29
2044
2097
  msgid "Features"
@@ -2144,6 +2197,10 @@ msgstr ""
2144
2197
  msgid "DHCP"
2145
2198
  msgstr ""
2146
2199
 
2200
+ #: ../lib/hammer_cli_foreman/subnet.rb:29
2201
+ msgid "IPAM"
2202
+ msgstr ""
2203
+
2147
2204
  #: ../lib/hammer_cli_foreman/subnet.rb:30
2148
2205
  msgid "VLAN ID"
2149
2206
  msgstr ""
@@ -2257,9 +2314,8 @@ msgid "Last login"
2257
2314
  msgstr ""
2258
2315
 
2259
2316
  #: ../lib/hammer_cli_foreman/user.rb:33
2260
- #, fuzzy
2261
2317
  msgid "Default organization"
2262
- msgstr "Manipulate organisations."
2318
+ msgstr "Default organisation"
2263
2319
 
2264
2320
  #: ../lib/hammer_cli_foreman/user.rb:34
2265
2321
  msgid "Default location"