hammer_cli_foreman 0.4.0 → 0.5.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 (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
@@ -5,7 +5,7 @@
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: hammer-cli-foreman 0.3.0\n"
8
+ "Project-Id-Version: hammer-cli-foreman 0.4.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "PO-Revision-Date: 2014-03-04 16:47+0000\n"
11
11
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
@@ -16,119 +16,119 @@ msgstr ""
16
16
  "Content-Transfer-Encoding: 8bit\n"
17
17
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
18
 
19
- #: ../lib/hammer_cli_foreman.rb:30
19
+ #: ../lib/hammer_cli_foreman.rb:32
20
20
  msgid "Foreman connection login/logout."
21
21
  msgstr ""
22
22
 
23
- #: ../lib/hammer_cli_foreman.rb:34
23
+ #: ../lib/hammer_cli_foreman.rb:36
24
24
  msgid "Manipulate architectures."
25
25
  msgstr ""
26
26
 
27
- #: ../lib/hammer_cli_foreman.rb:38
27
+ #: ../lib/hammer_cli_foreman.rb:40
28
28
  msgid "Manipulate auth sources."
29
29
  msgstr ""
30
30
 
31
- #: ../lib/hammer_cli_foreman.rb:42
31
+ #: ../lib/hammer_cli_foreman.rb:44
32
32
  msgid "Manipulate compute resources."
33
33
  msgstr ""
34
34
 
35
- #: ../lib/hammer_cli_foreman.rb:46
35
+ #: ../lib/hammer_cli_foreman.rb:48
36
36
  msgid "Manipulate domains."
37
37
  msgstr ""
38
38
 
39
- #: ../lib/hammer_cli_foreman.rb:50
39
+ #: ../lib/hammer_cli_foreman.rb:52
40
40
  msgid "Manipulate environments."
41
41
  msgstr ""
42
42
 
43
- #: ../lib/hammer_cli_foreman.rb:54
43
+ #: ../lib/hammer_cli_foreman.rb:56
44
44
  msgid "Search facts."
45
45
  msgstr ""
46
46
 
47
- #: ../lib/hammer_cli_foreman.rb:58
47
+ #: ../lib/hammer_cli_foreman.rb:60
48
48
  msgid "Manage permission filters."
49
49
  msgstr ""
50
50
 
51
- #: ../lib/hammer_cli_foreman.rb:62
51
+ #: ../lib/hammer_cli_foreman.rb:64
52
52
  msgid "Manipulate hosts."
53
53
  msgstr ""
54
54
 
55
- #: ../lib/hammer_cli_foreman.rb:66
55
+ #: ../lib/hammer_cli_foreman.rb:68
56
56
  msgid "Manipulate hostgroups."
57
57
  msgstr ""
58
58
 
59
- #: ../lib/hammer_cli_foreman.rb:70
59
+ #: ../lib/hammer_cli_foreman.rb:72
60
60
  msgid "Manipulate locations."
61
61
  msgstr ""
62
62
 
63
- #: ../lib/hammer_cli_foreman.rb:74
63
+ #: ../lib/hammer_cli_foreman.rb:76
64
64
  msgid "Manipulate installation media."
65
65
  msgstr ""
66
66
 
67
- #: ../lib/hammer_cli_foreman.rb:78
67
+ #: ../lib/hammer_cli_foreman.rb:80
68
68
  msgid "Manipulate hardware models."
69
69
  msgstr ""
70
70
 
71
- #: ../lib/hammer_cli_foreman.rb:82
71
+ #: ../lib/hammer_cli_foreman.rb:84
72
72
  msgid "Manipulate operating system."
73
73
  msgstr ""
74
74
 
75
- #: ../lib/hammer_cli_foreman.rb:86
75
+ #: ../lib/hammer_cli_foreman.rb:88
76
76
  msgid "Manipulate organizations."
77
77
  msgstr ""
78
78
 
79
- #: ../lib/hammer_cli_foreman.rb:90
79
+ #: ../lib/hammer_cli_foreman.rb:92
80
80
  msgid "Manipulate partition tables."
81
81
  msgstr ""
82
82
 
83
- #: ../lib/hammer_cli_foreman.rb:94
83
+ #: ../lib/hammer_cli_foreman.rb:96
84
84
  msgid "Search puppet modules."
85
85
  msgstr ""
86
86
 
87
- #: ../lib/hammer_cli_foreman.rb:98
87
+ #: ../lib/hammer_cli_foreman.rb:100
88
88
  msgid "Browse and read reports."
89
89
  msgstr ""
90
90
 
91
- #: ../lib/hammer_cli_foreman.rb:102
91
+ #: ../lib/hammer_cli_foreman.rb:104
92
92
  msgid "Manage user roles."
93
93
  msgstr ""
94
94
 
95
- #: ../lib/hammer_cli_foreman.rb:106
95
+ #: ../lib/hammer_cli_foreman.rb:108
96
96
  msgid "Manipulate smart class parameters."
97
97
  msgstr ""
98
98
 
99
- #: ../lib/hammer_cli_foreman.rb:110
99
+ #: ../lib/hammer_cli_foreman.rb:112
100
100
  msgid "Manipulate smart variables."
101
101
  msgstr ""
102
102
 
103
- #: ../lib/hammer_cli_foreman.rb:114
103
+ #: ../lib/hammer_cli_foreman.rb:116
104
104
  msgid "Manipulate smart proxies."
105
105
  msgstr ""
106
106
 
107
- #: ../lib/hammer_cli_foreman.rb:118
107
+ #: ../lib/hammer_cli_foreman.rb:120
108
108
  msgid "Change server settings."
109
109
  msgstr ""
110
110
 
111
- #: ../lib/hammer_cli_foreman.rb:122
111
+ #: ../lib/hammer_cli_foreman.rb:124
112
112
  msgid "Manipulate subnets."
113
113
  msgstr ""
114
114
 
115
- #: ../lib/hammer_cli_foreman.rb:126
115
+ #: ../lib/hammer_cli_foreman.rb:128
116
116
  msgid "Manipulate config templates."
117
117
  msgstr ""
118
118
 
119
- #: ../lib/hammer_cli_foreman.rb:130
119
+ #: ../lib/hammer_cli_foreman.rb:132
120
120
  msgid "Manipulate users."
121
121
  msgstr ""
122
122
 
123
- #: ../lib/hammer_cli_foreman.rb:134
123
+ #: ../lib/hammer_cli_foreman.rb:136
124
124
  msgid "Manage user groups."
125
125
  msgstr ""
126
126
 
127
- #: ../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
127
+ #: ../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
128
128
  msgid "Id"
129
129
  msgstr ""
130
130
 
131
- #: ../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
131
+ #: ../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
132
132
  msgid "Name"
133
133
  msgstr ""
134
134
 
@@ -474,31 +474,31 @@ msgstr ""
474
474
  msgid "Could not update the Auth Source"
475
475
  msgstr ""
476
476
 
477
- #: ../lib/hammer_cli_foreman/commands.rb:83
477
+ #: ../lib/hammer_cli_foreman/commands.rb:87
478
478
  msgid "Received data of unknown format"
479
479
  msgstr ""
480
480
 
481
- #: ../lib/hammer_cli_foreman/commands.rb:191
481
+ #: ../lib/hammer_cli_foreman/commands.rb:195
482
482
  msgid "Could not find %{resource}. Some search options were missing, please see --help."
483
483
  msgstr ""
484
484
 
485
- #: ../lib/hammer_cli_foreman/commands.rb:193
485
+ #: ../lib/hammer_cli_foreman/commands.rb:197
486
486
  msgid "Could not find %{resource}, please set option %{switches}."
487
487
  msgstr ""
488
488
 
489
- #: ../lib/hammer_cli_foreman/commands.rb:195
489
+ #: ../lib/hammer_cli_foreman/commands.rb:199
490
490
  msgid "Could not find %{resource}, please set one of options %{switches}."
491
491
  msgstr ""
492
492
 
493
- #: ../lib/hammer_cli_foreman/commands.rb:517
493
+ #: ../lib/hammer_cli_foreman/commands.rb:521
494
494
  msgid "Associate a resource"
495
495
  msgstr ""
496
496
 
497
- #: ../lib/hammer_cli_foreman/commands.rb:539
497
+ #: ../lib/hammer_cli_foreman/commands.rb:543
498
498
  msgid "Disassociate a resource"
499
499
  msgstr ""
500
500
 
501
- #: ../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
501
+ #: ../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
502
502
  msgid "Value"
503
503
  msgstr ""
504
504
 
@@ -538,7 +538,7 @@ msgstr ""
538
538
  msgid "Provider"
539
539
  msgstr ""
540
540
 
541
- #: ../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
541
+ #: ../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
542
542
  msgid "UUID"
543
543
  msgstr ""
544
544
 
@@ -598,6 +598,10 @@ msgstr ""
598
598
  msgid "[Foreman] Password for %s: "
599
599
  msgstr ""
600
600
 
601
+ #: ../lib/hammer_cli_foreman/defaults.rb:7
602
+ msgid "Use the default organization and/or location from the server"
603
+ msgstr ""
604
+
601
605
  #: ../lib/hammer_cli_foreman/domain.rb:6
602
606
  msgid "ID of DNS proxy to use within this domain"
603
607
  msgstr ""
@@ -742,7 +746,7 @@ msgstr ""
742
746
  msgid "Host"
743
747
  msgstr ""
744
748
 
745
- #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:326
749
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
746
750
  msgid "Fact"
747
751
  msgstr ""
748
752
 
@@ -766,11 +770,11 @@ msgstr ""
766
770
  msgid "Permissions"
767
771
  msgstr ""
768
772
 
769
- #: ../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
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:46
770
774
  msgid "(Miscellaneous)"
771
775
  msgstr ""
772
776
 
773
- #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:34
777
+ #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
774
778
  msgid "none"
775
779
  msgstr ""
776
780
 
@@ -810,303 +814,303 @@ msgstr ""
810
814
  msgid "ID of the owner"
811
815
  msgstr ""
812
816
 
813
- #: ../lib/hammer_cli_foreman/host.rb:42
817
+ #: ../lib/hammer_cli_foreman/host.rb:44
814
818
  msgid "Host parameters."
815
819
  msgstr ""
816
820
 
817
- #: ../lib/hammer_cli_foreman/host.rb:44
821
+ #: ../lib/hammer_cli_foreman/host.rb:46
818
822
  msgid "Compute resource attributes."
819
823
  msgstr ""
820
824
 
821
- #: ../lib/hammer_cli_foreman/host.rb:46
825
+ #: ../lib/hammer_cli_foreman/host.rb:48
822
826
  msgid "Volume parameters"
823
827
  msgstr ""
824
828
 
825
- #: ../lib/hammer_cli_foreman/host.rb:48
829
+ #: ../lib/hammer_cli_foreman/host.rb:50
826
830
  msgid "Interface parameters."
827
831
  msgstr ""
828
832
 
829
- #: ../lib/hammer_cli_foreman/host.rb:62
833
+ #: ../lib/hammer_cli_foreman/host.rb:64
830
834
  msgid "Enter the root password for the host:"
831
835
  msgstr ""
832
836
 
833
- #: ../lib/hammer_cli_foreman/host.rb:146
837
+ #: ../lib/hammer_cli_foreman/host.rb:153
834
838
  msgid "At least one interface must be set as primary"
835
839
  msgstr ""
836
840
 
837
- #: ../lib/hammer_cli_foreman/host.rb:149
841
+ #: ../lib/hammer_cli_foreman/host.rb:156
838
842
  msgid "At least one interface must be set as provision"
839
843
  msgstr ""
840
844
 
841
- #: ../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
845
+ #: ../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
842
846
  msgid "Operating System"
843
847
  msgstr ""
844
848
 
845
- #: ../lib/hammer_cli_foreman/host.rb:166 ../lib/hammer_cli_foreman/host.rb:205
849
+ #: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
846
850
  msgid "Host Group"
847
851
  msgstr ""
848
852
 
849
- #: ../lib/hammer_cli_foreman/host.rb:167 ../lib/hammer_cli_foreman/host.rb:218
853
+ #: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
850
854
  msgid "IP"
851
855
  msgstr ""
852
856
 
853
- #: ../lib/hammer_cli_foreman/host.rb:168 ../lib/hammer_cli_foreman/host.rb:219
857
+ #: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
854
858
  msgid "MAC"
855
859
  msgstr ""
856
860
 
857
- #: ../lib/hammer_cli_foreman/host.rb:178
861
+ #: ../lib/hammer_cli_foreman/host.rb:185
858
862
  msgid "Bare Metal"
859
863
  msgstr ""
860
864
 
861
- #: ../lib/hammer_cli_foreman/host.rb:203
865
+ #: ../lib/hammer_cli_foreman/host.rb:210
862
866
  msgid "Organization"
863
867
  msgstr ""
864
868
 
865
- #: ../lib/hammer_cli_foreman/host.rb:204
869
+ #: ../lib/hammer_cli_foreman/host.rb:211
866
870
  msgid "Location"
867
871
  msgstr ""
868
872
 
869
- #: ../lib/hammer_cli_foreman/host.rb:206
873
+ #: ../lib/hammer_cli_foreman/host.rb:213
870
874
  msgid "Compute Resource"
871
875
  msgstr ""
872
876
 
873
- #: ../lib/hammer_cli_foreman/host.rb:207
877
+ #: ../lib/hammer_cli_foreman/host.rb:214
874
878
  msgid "Compute Profile"
875
879
  msgstr ""
876
880
 
877
- #: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/hostgroup.rb:61
881
+ #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/hostgroup.rb:61
878
882
  msgid "Environment"
879
883
  msgstr ""
880
884
 
881
- #: ../lib/hammer_cli_foreman/host.rb:209
885
+ #: ../lib/hammer_cli_foreman/host.rb:216
882
886
  msgid "Puppet CA Id"
883
887
  msgstr ""
884
888
 
885
- #: ../lib/hammer_cli_foreman/host.rb:210
889
+ #: ../lib/hammer_cli_foreman/host.rb:217
886
890
  msgid "Puppet Master Id"
887
891
  msgstr ""
888
892
 
889
- #: ../lib/hammer_cli_foreman/host.rb:211
893
+ #: ../lib/hammer_cli_foreman/host.rb:218
890
894
  msgid "Cert name"
891
895
  msgstr ""
892
896
 
893
- #: ../lib/hammer_cli_foreman/host.rb:212 ../lib/hammer_cli_foreman/interface.rb:51
897
+ #: ../lib/hammer_cli_foreman/host.rb:219 ../lib/hammer_cli_foreman/interface.rb:51
894
898
  msgid "Managed"
895
899
  msgstr ""
896
900
 
897
- #: ../lib/hammer_cli_foreman/host.rb:214
901
+ #: ../lib/hammer_cli_foreman/host.rb:221
898
902
  msgid "Installed at"
899
903
  msgstr ""
900
904
 
901
- #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/report.rb:12
905
+ #: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
902
906
  msgid "Last report"
903
907
  msgstr ""
904
908
 
905
- #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/subnet.rb:12
909
+ #: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
906
910
  msgid "Network"
907
911
  msgstr ""
908
912
 
909
- #: ../lib/hammer_cli_foreman/host.rb:220 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
913
+ #: ../lib/hammer_cli_foreman/host.rb:227 ../lib/hammer_cli_foreman/hostgroup.rb:72 ../lib/hammer_cli_foreman/interface.rb:49
910
914
  msgid "Subnet"
911
915
  msgstr ""
912
916
 
913
- #: ../lib/hammer_cli_foreman/host.rb:221 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
917
+ #: ../lib/hammer_cli_foreman/host.rb:228 ../lib/hammer_cli_foreman/hostgroup.rb:74 ../lib/hammer_cli_foreman/interface.rb:50
914
918
  msgid "Domain"
915
919
  msgstr ""
916
920
 
917
- #: ../lib/hammer_cli_foreman/host.rb:222
921
+ #: ../lib/hammer_cli_foreman/host.rb:229
918
922
  msgid "Service provider"
919
923
  msgstr ""
920
924
 
921
- #: ../lib/hammer_cli_foreman/host.rb:223
925
+ #: ../lib/hammer_cli_foreman/host.rb:230
922
926
  msgid "SP Name"
923
927
  msgstr ""
924
928
 
925
- #: ../lib/hammer_cli_foreman/host.rb:224
929
+ #: ../lib/hammer_cli_foreman/host.rb:231
926
930
  msgid "SP IP"
927
931
  msgstr ""
928
932
 
929
- #: ../lib/hammer_cli_foreman/host.rb:225
933
+ #: ../lib/hammer_cli_foreman/host.rb:232
930
934
  msgid "SP MAC"
931
935
  msgstr ""
932
936
 
933
- #: ../lib/hammer_cli_foreman/host.rb:226
937
+ #: ../lib/hammer_cli_foreman/host.rb:233
934
938
  msgid "SP Subnet"
935
939
  msgstr ""
936
940
 
937
- #: ../lib/hammer_cli_foreman/host.rb:230
941
+ #: ../lib/hammer_cli_foreman/host.rb:237
938
942
  msgid "Network interfaces"
939
943
  msgstr ""
940
944
 
941
- #: ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
945
+ #: ../lib/hammer_cli_foreman/host.rb:239 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
942
946
  msgid "Identifier"
943
947
  msgstr ""
944
948
 
945
- #: ../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
949
+ #: ../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
946
950
  msgid "Type"
947
951
  msgstr ""
948
952
 
949
- #: ../lib/hammer_cli_foreman/host.rb:234 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
953
+ #: ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
950
954
  msgid "MAC address"
951
955
  msgstr ""
952
956
 
953
- #: ../lib/hammer_cli_foreman/host.rb:235 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
957
+ #: ../lib/hammer_cli_foreman/host.rb:242 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
954
958
  msgid "IP address"
955
959
  msgstr ""
956
960
 
957
- #: ../lib/hammer_cli_foreman/host.rb:236
961
+ #: ../lib/hammer_cli_foreman/host.rb:243
958
962
  msgid "FQDN"
959
963
  msgstr ""
960
964
 
961
- #: ../lib/hammer_cli_foreman/host.rb:239
965
+ #: ../lib/hammer_cli_foreman/host.rb:246
962
966
  msgid "Operating system"
963
967
  msgstr ""
964
968
 
965
- #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
969
+ #: ../lib/hammer_cli_foreman/host.rb:247 ../lib/hammer_cli_foreman/hostgroup.rb:75 ../lib/hammer_cli_foreman/image.rb:45
966
970
  msgid "Architecture"
967
971
  msgstr ""
968
972
 
969
- #: ../lib/hammer_cli_foreman/host.rb:244
973
+ #: ../lib/hammer_cli_foreman/host.rb:251
970
974
  msgid "Build"
971
975
  msgstr ""
972
976
 
973
- #: ../lib/hammer_cli_foreman/host.rb:245 ../lib/hammer_cli_foreman/hostgroup.rb:77
977
+ #: ../lib/hammer_cli_foreman/host.rb:252 ../lib/hammer_cli_foreman/hostgroup.rb:77
974
978
  msgid "Medium"
975
979
  msgstr ""
976
980
 
977
- #: ../lib/hammer_cli_foreman/host.rb:246 ../lib/hammer_cli_foreman/hostgroup.rb:76
981
+ #: ../lib/hammer_cli_foreman/host.rb:253 ../lib/hammer_cli_foreman/hostgroup.rb:76
978
982
  msgid "Partition Table"
979
983
  msgstr ""
980
984
 
981
- #: ../lib/hammer_cli_foreman/host.rb:247
985
+ #: ../lib/hammer_cli_foreman/host.rb:254
982
986
  msgid "Custom partition table"
983
987
  msgstr ""
984
988
 
985
- #: ../lib/hammer_cli_foreman/host.rb:250
989
+ #: ../lib/hammer_cli_foreman/host.rb:257
986
990
  msgid "Image"
987
991
  msgstr ""
988
992
 
989
- #: ../lib/hammer_cli_foreman/host.rb:251
993
+ #: ../lib/hammer_cli_foreman/host.rb:258
990
994
  msgid "Image file"
991
995
  msgstr ""
992
996
 
993
- #: ../lib/hammer_cli_foreman/host.rb:252
997
+ #: ../lib/hammer_cli_foreman/host.rb:259
994
998
  msgid "Use image"
995
999
  msgstr ""
996
1000
 
997
- #: ../lib/hammer_cli_foreman/host.rb:258
1001
+ #: ../lib/hammer_cli_foreman/host.rb:265
998
1002
  msgid "Additional info"
999
1003
  msgstr ""
1000
1004
 
1001
- #: ../lib/hammer_cli_foreman/host.rb:259
1005
+ #: ../lib/hammer_cli_foreman/host.rb:266
1002
1006
  msgid "Owner Id"
1003
1007
  msgstr ""
1004
1008
 
1005
- #: ../lib/hammer_cli_foreman/host.rb:260
1009
+ #: ../lib/hammer_cli_foreman/host.rb:267
1006
1010
  msgid "Owner Type"
1007
1011
  msgstr ""
1008
1012
 
1009
- #: ../lib/hammer_cli_foreman/host.rb:261
1013
+ #: ../lib/hammer_cli_foreman/host.rb:268
1010
1014
  msgid "Enabled"
1011
1015
  msgstr ""
1012
1016
 
1013
- #: ../lib/hammer_cli_foreman/host.rb:262 ../lib/hammer_cli_foreman/hostgroup.rb:62
1017
+ #: ../lib/hammer_cli_foreman/host.rb:269 ../lib/hammer_cli_foreman/hostgroup.rb:62
1014
1018
  msgid "Model"
1015
1019
  msgstr ""
1016
1020
 
1017
- #: ../lib/hammer_cli_foreman/host.rb:263
1021
+ #: ../lib/hammer_cli_foreman/host.rb:270
1018
1022
  msgid "Comment"
1019
1023
  msgstr ""
1020
1024
 
1021
- #: ../lib/hammer_cli_foreman/host.rb:276
1025
+ #: ../lib/hammer_cli_foreman/host.rb:283
1022
1026
  msgid "Status"
1023
1027
  msgstr ""
1024
1028
 
1025
- #: ../lib/hammer_cli_foreman/host.rb:277
1029
+ #: ../lib/hammer_cli_foreman/host.rb:284
1026
1030
  msgid "Power"
1027
1031
  msgstr ""
1028
1032
 
1029
- #: ../lib/hammer_cli_foreman/host.rb:313
1033
+ #: ../lib/hammer_cli_foreman/host.rb:320
1030
1034
  msgid "Puppet run triggered"
1031
1035
  msgstr ""
1032
1036
 
1033
- #: ../lib/hammer_cli_foreman/host.rb:366
1037
+ #: ../lib/hammer_cli_foreman/host.rb:373
1034
1038
  msgid "Host created"
1035
1039
  msgstr ""
1036
1040
 
1037
- #: ../lib/hammer_cli_foreman/host.rb:367
1041
+ #: ../lib/hammer_cli_foreman/host.rb:374
1038
1042
  msgid "Could not create the host"
1039
1043
  msgstr ""
1040
1044
 
1041
- #: ../lib/hammer_cli_foreman/host.rb:388
1045
+ #: ../lib/hammer_cli_foreman/host.rb:395
1042
1046
  msgid "Host updated"
1043
1047
  msgstr ""
1044
1048
 
1045
- #: ../lib/hammer_cli_foreman/host.rb:389
1049
+ #: ../lib/hammer_cli_foreman/host.rb:396
1046
1050
  msgid "Could not update the host"
1047
1051
  msgstr ""
1048
1052
 
1049
- #: ../lib/hammer_cli_foreman/host.rb:396
1053
+ #: ../lib/hammer_cli_foreman/host.rb:403
1050
1054
  msgid "Host deleted"
1051
1055
  msgstr ""
1052
1056
 
1053
- #: ../lib/hammer_cli_foreman/host.rb:397
1057
+ #: ../lib/hammer_cli_foreman/host.rb:404
1054
1058
  msgid "Could not delete the host"
1055
1059
  msgstr ""
1056
1060
 
1057
- #: ../lib/hammer_cli_foreman/host.rb:404
1061
+ #: ../lib/hammer_cli_foreman/host.rb:411
1058
1062
  msgid "Create or update parameter for a host."
1059
1063
  msgstr ""
1060
1064
 
1061
- #: ../lib/hammer_cli_foreman/host.rb:406
1065
+ #: ../lib/hammer_cli_foreman/host.rb:413
1062
1066
  msgid "Host parameter updated"
1063
1067
  msgstr ""
1064
1068
 
1065
- #: ../lib/hammer_cli_foreman/host.rb:407
1069
+ #: ../lib/hammer_cli_foreman/host.rb:414
1066
1070
  msgid "New host parameter created"
1067
1071
  msgstr ""
1068
1072
 
1069
- #: ../lib/hammer_cli_foreman/host.rb:408
1073
+ #: ../lib/hammer_cli_foreman/host.rb:415
1070
1074
  msgid "Could not set host parameter"
1071
1075
  msgstr ""
1072
1076
 
1073
- #: ../lib/hammer_cli_foreman/host.rb:420
1077
+ #: ../lib/hammer_cli_foreman/host.rb:427
1074
1078
  msgid "Delete parameter for a host."
1075
1079
  msgstr ""
1076
1080
 
1077
- #: ../lib/hammer_cli_foreman/host.rb:422
1081
+ #: ../lib/hammer_cli_foreman/host.rb:429
1078
1082
  msgid "Host parameter deleted"
1079
1083
  msgstr ""
1080
1084
 
1081
- #: ../lib/hammer_cli_foreman/host.rb:437
1085
+ #: ../lib/hammer_cli_foreman/host.rb:444
1082
1086
  msgid "Power a host on"
1083
1087
  msgstr ""
1084
1088
 
1085
- #: ../lib/hammer_cli_foreman/host.rb:438
1089
+ #: ../lib/hammer_cli_foreman/host.rb:445
1086
1090
  msgid "The host is starting."
1087
1091
  msgstr ""
1088
1092
 
1089
- #: ../lib/hammer_cli_foreman/host.rb:455
1093
+ #: ../lib/hammer_cli_foreman/host.rb:462
1090
1094
  msgid "Force turning off a host"
1091
1095
  msgstr ""
1092
1096
 
1093
- #: ../lib/hammer_cli_foreman/host.rb:460
1097
+ #: ../lib/hammer_cli_foreman/host.rb:467
1094
1098
  msgid "Power a host off"
1095
1099
  msgstr ""
1096
1100
 
1097
- #: ../lib/hammer_cli_foreman/host.rb:472
1101
+ #: ../lib/hammer_cli_foreman/host.rb:479
1098
1102
  msgid "Power off forced."
1099
1103
  msgstr ""
1100
1104
 
1101
- #: ../lib/hammer_cli_foreman/host.rb:474
1105
+ #: ../lib/hammer_cli_foreman/host.rb:481
1102
1106
  msgid "Powering the host off."
1103
1107
  msgstr ""
1104
1108
 
1105
- #: ../lib/hammer_cli_foreman/host.rb:491
1109
+ #: ../lib/hammer_cli_foreman/host.rb:498
1106
1110
  msgid "Reboot a host"
1107
1111
  msgstr ""
1108
1112
 
1109
- #: ../lib/hammer_cli_foreman/host.rb:492
1113
+ #: ../lib/hammer_cli_foreman/host.rb:499
1110
1114
  msgid "Host reboot started."
1111
1115
  msgstr ""
1112
1116
 
@@ -1307,7 +1311,7 @@ msgid "%s not found"
1307
1311
  msgstr ""
1308
1312
 
1309
1313
  #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1310
- msgid "%s found more than once"
1314
+ msgid "found more than one %s"
1311
1315
  msgstr ""
1312
1316
 
1313
1317
  #: ../lib/hammer_cli_foreman/id_resolver.rb:212
@@ -1478,6 +1482,34 @@ msgstr ""
1478
1482
  msgid "Could not delete the location"
1479
1483
  msgstr ""
1480
1484
 
1485
+ #: ../lib/hammer_cli_foreman/location.rb:86
1486
+ msgid "Create or update parameter for a location."
1487
+ msgstr ""
1488
+
1489
+ #: ../lib/hammer_cli_foreman/location.rb:88 ../lib/hammer_cli_foreman/organization.rb:89
1490
+ msgid "Parameter [%{name}] updated to value [%{value}]"
1491
+ msgstr ""
1492
+
1493
+ #: ../lib/hammer_cli_foreman/location.rb:89 ../lib/hammer_cli_foreman/organization.rb:90
1494
+ msgid "Parameter [%{name}] created with value [%{value}]"
1495
+ msgstr ""
1496
+
1497
+ #: ../lib/hammer_cli_foreman/location.rb:90
1498
+ msgid "Could not set location parameter"
1499
+ msgstr ""
1500
+
1501
+ #: ../lib/hammer_cli_foreman/location.rb:97
1502
+ msgid "Delete parameter for a location."
1503
+ msgstr ""
1504
+
1505
+ #: ../lib/hammer_cli_foreman/location.rb:99 ../lib/hammer_cli_foreman/organization.rb:100
1506
+ msgid "Parameter [%{name}] deleted"
1507
+ msgstr ""
1508
+
1509
+ #: ../lib/hammer_cli_foreman/location.rb:100
1510
+ msgid "Could not delete location parameter"
1511
+ msgstr ""
1512
+
1481
1513
  #: ../lib/hammer_cli_foreman/media.rb:11
1482
1514
  msgid "Path"
1483
1515
  msgstr ""
@@ -1682,6 +1714,22 @@ msgstr ""
1682
1714
  msgid "Could not delete the organization"
1683
1715
  msgstr ""
1684
1716
 
1717
+ #: ../lib/hammer_cli_foreman/organization.rb:87
1718
+ msgid "Create or update parameter for an organization."
1719
+ msgstr ""
1720
+
1721
+ #: ../lib/hammer_cli_foreman/organization.rb:91
1722
+ msgid "Could not set organization parameter"
1723
+ msgstr ""
1724
+
1725
+ #: ../lib/hammer_cli_foreman/organization.rb:98
1726
+ msgid "Delete parameter for an organization."
1727
+ msgstr ""
1728
+
1729
+ #: ../lib/hammer_cli_foreman/organization.rb:101
1730
+ msgid "Could not delete organization parameter"
1731
+ msgstr ""
1732
+
1685
1733
  #: ../lib/hammer_cli_foreman/partition_table.rb:31
1686
1734
  msgid "View partition table content."
1687
1735
  msgstr ""
@@ -1894,31 +1942,43 @@ msgstr ""
1894
1942
  msgid "The server does not support such operation."
1895
1943
  msgstr ""
1896
1944
 
1897
- #: ../lib/hammer_cli_foreman/role.rb:23
1945
+ #: ../lib/hammer_cli_foreman/role.rb:20
1946
+ msgid "Builtin"
1947
+ msgstr ""
1948
+
1949
+ #: ../lib/hammer_cli_foreman/role.rb:24
1950
+ msgid "No"
1951
+ msgstr ""
1952
+
1953
+ #: ../lib/hammer_cli_foreman/role.rb:24
1954
+ msgid "Yes"
1955
+ msgstr ""
1956
+
1957
+ #: ../lib/hammer_cli_foreman/role.rb:36
1898
1958
  msgid "User role id"
1899
1959
  msgstr ""
1900
1960
 
1901
- #: ../lib/hammer_cli_foreman/role.rb:47
1961
+ #: ../lib/hammer_cli_foreman/role.rb:60
1902
1962
  msgid "User role [%<name>s] created"
1903
1963
  msgstr ""
1904
1964
 
1905
- #: ../lib/hammer_cli_foreman/role.rb:48
1965
+ #: ../lib/hammer_cli_foreman/role.rb:61
1906
1966
  msgid "Could not create the user role"
1907
1967
  msgstr ""
1908
1968
 
1909
- #: ../lib/hammer_cli_foreman/role.rb:55
1969
+ #: ../lib/hammer_cli_foreman/role.rb:68
1910
1970
  msgid "User role [%<name>s] updated"
1911
1971
  msgstr ""
1912
1972
 
1913
- #: ../lib/hammer_cli_foreman/role.rb:56
1973
+ #: ../lib/hammer_cli_foreman/role.rb:69
1914
1974
  msgid "Could not update the user role"
1915
1975
  msgstr ""
1916
1976
 
1917
- #: ../lib/hammer_cli_foreman/role.rb:63
1977
+ #: ../lib/hammer_cli_foreman/role.rb:76
1918
1978
  msgid "User role [%<name>s] deleted"
1919
1979
  msgstr ""
1920
1980
 
1921
- #: ../lib/hammer_cli_foreman/role.rb:64
1981
+ #: ../lib/hammer_cli_foreman/role.rb:77
1922
1982
  msgid "Could not delete the user roles"
1923
1983
  msgstr ""
1924
1984
 
@@ -2134,6 +2194,10 @@ msgstr ""
2134
2194
  msgid "DHCP"
2135
2195
  msgstr ""
2136
2196
 
2197
+ #: ../lib/hammer_cli_foreman/subnet.rb:29
2198
+ msgid "IPAM"
2199
+ msgstr ""
2200
+
2137
2201
  #: ../lib/hammer_cli_foreman/subnet.rb:30
2138
2202
  msgid "VLAN ID"
2139
2203
  msgstr ""