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.
- checksums.yaml +4 -4
- data/README.md +13 -2
- data/doc/host_create.md +15 -7
- data/doc/release_notes.md +11 -0
- data/lib/hammer_cli_foreman/commands.rb +5 -1
- data/lib/hammer_cli_foreman/defaults.rb +29 -0
- data/lib/hammer_cli_foreman/host.rb +8 -1
- data/lib/hammer_cli_foreman/id_resolver.rb +1 -1
- data/lib/hammer_cli_foreman/location.rb +21 -0
- data/lib/hammer_cli_foreman/organization.rb +21 -0
- data/lib/hammer_cli_foreman/parameter.rb +7 -7
- data/lib/hammer_cli_foreman/role.rb +13 -0
- data/lib/hammer_cli_foreman/subnet.rb +1 -1
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/lib/hammer_cli_foreman.rb +2 -0
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/hammer-cli-foreman.edit.po +394 -423
- data/locale/de/hammer-cli-foreman.po +1920 -1511
- data/locale/en/hammer-cli-foreman.edit.po +188 -124
- data/locale/en/hammer-cli-foreman.po +49 -1
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/hammer-cli-foreman.edit.po +208 -152
- data/locale/en_GB/hammer-cli-foreman.po +1554 -1145
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/hammer-cli-foreman.edit.po +438 -464
- data/locale/es/hammer-cli-foreman.po +1930 -1519
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/hammer-cli-foreman.edit.po +301 -328
- data/locale/fr/hammer-cli-foreman.po +1922 -1513
- data/locale/hammer-cli-foreman.pot +194 -127
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/hammer-cli-foreman.edit.po +303 -331
- data/locale/it/hammer-cli-foreman.po +1909 -1500
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/hammer-cli-foreman.edit.po +302 -330
- data/locale/ja/hammer-cli-foreman.po +1920 -1511
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/hammer-cli-foreman.edit.po +303 -332
- data/locale/ko/hammer-cli-foreman.po +1910 -1501
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/hammer-cli-foreman.edit.po +369 -393
- data/locale/pt_BR/hammer-cli-foreman.po +1916 -1506
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/hammer-cli-foreman.edit.po +344 -372
- data/locale/ru/hammer-cli-foreman.po +1940 -1531
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/hammer-cli-foreman.edit.po +303 -331
- data/locale/zh_CN/hammer-cli-foreman.po +1905 -1496
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/hammer-cli-foreman.edit.po +306 -334
- data/locale/zh_TW/hammer-cli-foreman.po +1908 -1499
- data/test/functional/api_expectations.rb +65 -0
- data/test/functional/command_assertions.rb +76 -0
- data/test/functional/location_test.rb +140 -0
- data/test/functional/organization_test.rb +140 -0
- data/test/functional/test_helper.rb +7 -0
- data/test/test_helper.rb +27 -0
- data/test/unit/apipie_resource_mock.rb +24 -6
- data/test/unit/architecture_test.rb +1 -1
- data/test/unit/auth_source_ldap_test.rb +1 -3
- data/test/unit/common_parameter_test.rb +1 -1
- data/test/unit/compute_resource_test.rb +1 -1
- data/test/unit/data/1.10/foreman_api.json +1 -0
- data/test/unit/data/README.md +22 -0
- data/test/unit/data/test_api.json +609 -0
- data/test/unit/defaults_test.rb +32 -0
- data/test/unit/dependency_resolver_test.rb +21 -16
- data/test/unit/domain_test.rb +1 -1
- data/test/unit/environment_test.rb +1 -1
- data/test/unit/external_usergroup_test.rb +1 -1
- data/test/unit/helpers/command.rb +5 -1
- data/test/unit/host_test.rb +16 -8
- data/test/unit/hostgroup_test.rb +1 -1
- data/test/unit/id_resolver_test.rb +40 -37
- data/test/unit/image_test.rb +1 -3
- data/test/unit/location_test.rb +1 -1
- data/test/unit/media_test.rb +3 -3
- data/test/unit/model_test.rb +1 -1
- data/test/unit/operating_system_test.rb +1 -2
- data/test/unit/option_builders_test.rb +106 -116
- data/test/unit/organization_test.rb +1 -1
- data/test/unit/partition_table_test.rb +1 -1
- data/test/unit/puppet_class_test.rb +4 -1
- data/test/unit/report_test.rb +1 -1
- data/test/unit/role_test.rb +15 -0
- data/test/unit/smart_class_parameter_test.rb +1 -1
- data/test/unit/smart_proxy_test.rb +1 -1
- data/test/unit/smart_variable_test.rb +1 -1
- data/test/unit/subnet_test.rb +1 -1
- data/test/unit/template_test.rb +1 -1
- data/test/unit/test_helper.rb +2 -29
- data/test/unit/user_test.rb +1 -2
- metadata +67 -539
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Architecture.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-CommonParameter.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ComputeResource.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Domain.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Environment.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml +0 -46
- data/test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml +0 -85
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml +0 -40
- data/test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Host.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml +0 -29
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml +0 -27
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Hostgroup.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Location.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml +0 -23
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Medium.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml +0 -27
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-OperatingSystem.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Organization.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml +0 -19
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-PartitionTable.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml +0 -21
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-SmartProxy.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml +0 -43
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml +0 -13
- data/test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Subnet.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml +0 -12
- data/test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml +0 -15
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml +0 -9
- data/test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-Template.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml +0 -19
- data/test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml +0 -23
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml +0 -17
- data/test/reports/TEST-HammerCLIForeman-User-ListCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml +0 -11
- data/test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml +0 -7
- data/test/reports/TEST-HammerCLIForeman-User.xml +0 -7
- data/test/reports/TEST-MiniTest-Spec.xml +0 -7
- data/test/unit/data/1.4/foreman_api.json +0 -10387
- data/test/unit/data/1.5/foreman_api.json +0 -14130
- data/test/unit/data/1.6/foreman_api.json +0 -1
- data/test/unit/data/1.6/foreman_api_back.json +0 -1
- data/test/unit/data/1.6/whatever.json +0 -1
- 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 "
|
|
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
|
|
|
Binary file
|
|
@@ -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.
|
|
9
|
+
"Project-Id-Version: hammer-cli-foreman 0.4.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2015-
|
|
12
|
-
"PO-Revision-Date: 2015-
|
|
13
|
-
"Last-Translator:
|
|
14
|
-
"Language-Team: English (United Kingdom) (http://www.transifex.com/
|
|
15
|
-
"
|
|
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:
|
|
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:
|
|
26
|
+
#: ../lib/hammer_cli_foreman.rb:36
|
|
27
27
|
msgid "Manipulate architectures."
|
|
28
28
|
msgstr ""
|
|
29
29
|
|
|
30
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
30
|
+
#: ../lib/hammer_cli_foreman.rb:40
|
|
31
31
|
msgid "Manipulate auth sources."
|
|
32
32
|
msgstr ""
|
|
33
33
|
|
|
34
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
34
|
+
#: ../lib/hammer_cli_foreman.rb:44
|
|
35
35
|
msgid "Manipulate compute resources."
|
|
36
36
|
msgstr ""
|
|
37
37
|
|
|
38
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
38
|
+
#: ../lib/hammer_cli_foreman.rb:48
|
|
39
39
|
msgid "Manipulate domains."
|
|
40
40
|
msgstr ""
|
|
41
41
|
|
|
42
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
42
|
+
#: ../lib/hammer_cli_foreman.rb:52
|
|
43
43
|
msgid "Manipulate environments."
|
|
44
44
|
msgstr ""
|
|
45
45
|
|
|
46
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
46
|
+
#: ../lib/hammer_cli_foreman.rb:56
|
|
47
47
|
msgid "Search facts."
|
|
48
48
|
msgstr ""
|
|
49
49
|
|
|
50
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
50
|
+
#: ../lib/hammer_cli_foreman.rb:60
|
|
51
51
|
msgid "Manage permission filters."
|
|
52
52
|
msgstr ""
|
|
53
53
|
|
|
54
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
54
|
+
#: ../lib/hammer_cli_foreman.rb:64
|
|
55
55
|
msgid "Manipulate hosts."
|
|
56
56
|
msgstr ""
|
|
57
57
|
|
|
58
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
58
|
+
#: ../lib/hammer_cli_foreman.rb:68
|
|
59
59
|
msgid "Manipulate hostgroups."
|
|
60
60
|
msgstr ""
|
|
61
61
|
|
|
62
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
62
|
+
#: ../lib/hammer_cli_foreman.rb:72
|
|
63
63
|
msgid "Manipulate locations."
|
|
64
64
|
msgstr ""
|
|
65
65
|
|
|
66
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
66
|
+
#: ../lib/hammer_cli_foreman.rb:76
|
|
67
67
|
msgid "Manipulate installation media."
|
|
68
68
|
msgstr ""
|
|
69
69
|
|
|
70
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
70
|
+
#: ../lib/hammer_cli_foreman.rb:80
|
|
71
71
|
msgid "Manipulate hardware models."
|
|
72
72
|
msgstr ""
|
|
73
73
|
|
|
74
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
74
|
+
#: ../lib/hammer_cli_foreman.rb:84
|
|
75
75
|
msgid "Manipulate operating system."
|
|
76
76
|
msgstr ""
|
|
77
77
|
|
|
78
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
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:
|
|
82
|
+
#: ../lib/hammer_cli_foreman.rb:92
|
|
83
83
|
msgid "Manipulate partition tables."
|
|
84
84
|
msgstr ""
|
|
85
85
|
|
|
86
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
86
|
+
#: ../lib/hammer_cli_foreman.rb:96
|
|
87
87
|
msgid "Search puppet modules."
|
|
88
88
|
msgstr ""
|
|
89
89
|
|
|
90
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
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:
|
|
94
|
+
#: ../lib/hammer_cli_foreman.rb:104
|
|
95
95
|
msgid "Manage user roles."
|
|
96
96
|
msgstr ""
|
|
97
97
|
|
|
98
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
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:
|
|
102
|
+
#: ../lib/hammer_cli_foreman.rb:112
|
|
103
103
|
msgid "Manipulate smart variables."
|
|
104
104
|
msgstr ""
|
|
105
105
|
|
|
106
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
106
|
+
#: ../lib/hammer_cli_foreman.rb:116
|
|
107
107
|
msgid "Manipulate smart proxies."
|
|
108
108
|
msgstr ""
|
|
109
109
|
|
|
110
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
110
|
+
#: ../lib/hammer_cli_foreman.rb:120
|
|
111
111
|
msgid "Change server settings."
|
|
112
112
|
msgstr ""
|
|
113
113
|
|
|
114
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
114
|
+
#: ../lib/hammer_cli_foreman.rb:124
|
|
115
115
|
msgid "Manipulate subnets."
|
|
116
116
|
msgstr ""
|
|
117
117
|
|
|
118
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
118
|
+
#: ../lib/hammer_cli_foreman.rb:128
|
|
119
119
|
msgid "Manipulate config templates."
|
|
120
120
|
msgstr ""
|
|
121
121
|
|
|
122
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
122
|
+
#: ../lib/hammer_cli_foreman.rb:132
|
|
123
123
|
msgid "Manipulate users."
|
|
124
124
|
msgstr ""
|
|
125
125
|
|
|
126
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
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:
|
|
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:
|
|
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 "
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
866
|
-
#, fuzzy
|
|
868
|
+
#: ../lib/hammer_cli_foreman/host.rb:210
|
|
867
869
|
msgid "Organization"
|
|
868
|
-
msgstr "
|
|
870
|
+
msgstr "Organisation"
|
|
869
871
|
|
|
870
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
872
|
+
#: ../lib/hammer_cli_foreman/host.rb:211
|
|
871
873
|
msgid "Location"
|
|
872
874
|
msgstr ""
|
|
873
875
|
|
|
874
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
964
|
+
#: ../lib/hammer_cli_foreman/host.rb:243
|
|
963
965
|
msgid "FQDN"
|
|
964
966
|
msgstr ""
|
|
965
967
|
|
|
966
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
976
|
+
#: ../lib/hammer_cli_foreman/host.rb:251
|
|
975
977
|
msgid "Build"
|
|
976
978
|
msgstr ""
|
|
977
979
|
|
|
978
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
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:
|
|
992
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
|
991
993
|
msgid "Image"
|
|
992
994
|
msgstr ""
|
|
993
995
|
|
|
994
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
1024
|
+
#: ../lib/hammer_cli_foreman/host.rb:270
|
|
1023
1025
|
msgid "Comment"
|
|
1024
1026
|
msgstr ""
|
|
1025
1027
|
|
|
1026
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1028
|
+
#: ../lib/hammer_cli_foreman/host.rb:283
|
|
1027
1029
|
msgid "Status"
|
|
1028
1030
|
msgstr ""
|
|
1029
1031
|
|
|
1030
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1032
|
+
#: ../lib/hammer_cli_foreman/host.rb:284
|
|
1031
1033
|
msgid "Power"
|
|
1032
1034
|
msgstr ""
|
|
1033
1035
|
|
|
1034
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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 "
|
|
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 "
|
|
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 "
|
|
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 "
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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 "
|
|
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 "
|
|
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 "
|
|
2318
|
+
msgstr "Default organisation"
|
|
2263
2319
|
|
|
2264
2320
|
#: ../lib/hammer_cli_foreman/user.rb:34
|
|
2265
2321
|
msgid "Default location"
|