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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
#
|
|
6
6
|
msgid ""
|
|
7
7
|
msgstr ""
|
|
8
|
-
"Project-Id-Version: hammer-cli-foreman 0.
|
|
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:
|
|
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:
|
|
23
|
+
#: ../lib/hammer_cli_foreman.rb:36
|
|
24
24
|
msgid "Manipulate architectures."
|
|
25
25
|
msgstr ""
|
|
26
26
|
|
|
27
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
27
|
+
#: ../lib/hammer_cli_foreman.rb:40
|
|
28
28
|
msgid "Manipulate auth sources."
|
|
29
29
|
msgstr ""
|
|
30
30
|
|
|
31
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
31
|
+
#: ../lib/hammer_cli_foreman.rb:44
|
|
32
32
|
msgid "Manipulate compute resources."
|
|
33
33
|
msgstr ""
|
|
34
34
|
|
|
35
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
35
|
+
#: ../lib/hammer_cli_foreman.rb:48
|
|
36
36
|
msgid "Manipulate domains."
|
|
37
37
|
msgstr ""
|
|
38
38
|
|
|
39
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
39
|
+
#: ../lib/hammer_cli_foreman.rb:52
|
|
40
40
|
msgid "Manipulate environments."
|
|
41
41
|
msgstr ""
|
|
42
42
|
|
|
43
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
43
|
+
#: ../lib/hammer_cli_foreman.rb:56
|
|
44
44
|
msgid "Search facts."
|
|
45
45
|
msgstr ""
|
|
46
46
|
|
|
47
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
47
|
+
#: ../lib/hammer_cli_foreman.rb:60
|
|
48
48
|
msgid "Manage permission filters."
|
|
49
49
|
msgstr ""
|
|
50
50
|
|
|
51
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
51
|
+
#: ../lib/hammer_cli_foreman.rb:64
|
|
52
52
|
msgid "Manipulate hosts."
|
|
53
53
|
msgstr ""
|
|
54
54
|
|
|
55
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
55
|
+
#: ../lib/hammer_cli_foreman.rb:68
|
|
56
56
|
msgid "Manipulate hostgroups."
|
|
57
57
|
msgstr ""
|
|
58
58
|
|
|
59
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
59
|
+
#: ../lib/hammer_cli_foreman.rb:72
|
|
60
60
|
msgid "Manipulate locations."
|
|
61
61
|
msgstr ""
|
|
62
62
|
|
|
63
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
63
|
+
#: ../lib/hammer_cli_foreman.rb:76
|
|
64
64
|
msgid "Manipulate installation media."
|
|
65
65
|
msgstr ""
|
|
66
66
|
|
|
67
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
67
|
+
#: ../lib/hammer_cli_foreman.rb:80
|
|
68
68
|
msgid "Manipulate hardware models."
|
|
69
69
|
msgstr ""
|
|
70
70
|
|
|
71
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
71
|
+
#: ../lib/hammer_cli_foreman.rb:84
|
|
72
72
|
msgid "Manipulate operating system."
|
|
73
73
|
msgstr ""
|
|
74
74
|
|
|
75
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
75
|
+
#: ../lib/hammer_cli_foreman.rb:88
|
|
76
76
|
msgid "Manipulate organizations."
|
|
77
77
|
msgstr ""
|
|
78
78
|
|
|
79
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
79
|
+
#: ../lib/hammer_cli_foreman.rb:92
|
|
80
80
|
msgid "Manipulate partition tables."
|
|
81
81
|
msgstr ""
|
|
82
82
|
|
|
83
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
83
|
+
#: ../lib/hammer_cli_foreman.rb:96
|
|
84
84
|
msgid "Search puppet modules."
|
|
85
85
|
msgstr ""
|
|
86
86
|
|
|
87
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
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:
|
|
91
|
+
#: ../lib/hammer_cli_foreman.rb:104
|
|
92
92
|
msgid "Manage user roles."
|
|
93
93
|
msgstr ""
|
|
94
94
|
|
|
95
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
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:
|
|
99
|
+
#: ../lib/hammer_cli_foreman.rb:112
|
|
100
100
|
msgid "Manipulate smart variables."
|
|
101
101
|
msgstr ""
|
|
102
102
|
|
|
103
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
103
|
+
#: ../lib/hammer_cli_foreman.rb:116
|
|
104
104
|
msgid "Manipulate smart proxies."
|
|
105
105
|
msgstr ""
|
|
106
106
|
|
|
107
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
107
|
+
#: ../lib/hammer_cli_foreman.rb:120
|
|
108
108
|
msgid "Change server settings."
|
|
109
109
|
msgstr ""
|
|
110
110
|
|
|
111
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
111
|
+
#: ../lib/hammer_cli_foreman.rb:124
|
|
112
112
|
msgid "Manipulate subnets."
|
|
113
113
|
msgstr ""
|
|
114
114
|
|
|
115
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
115
|
+
#: ../lib/hammer_cli_foreman.rb:128
|
|
116
116
|
msgid "Manipulate config templates."
|
|
117
117
|
msgstr ""
|
|
118
118
|
|
|
119
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
119
|
+
#: ../lib/hammer_cli_foreman.rb:132
|
|
120
120
|
msgid "Manipulate users."
|
|
121
121
|
msgstr ""
|
|
122
122
|
|
|
123
|
-
#: ../lib/hammer_cli_foreman.rb:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
865
|
+
#: ../lib/hammer_cli_foreman/host.rb:210
|
|
862
866
|
msgid "Organization"
|
|
863
867
|
msgstr ""
|
|
864
868
|
|
|
865
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
869
|
+
#: ../lib/hammer_cli_foreman/host.rb:211
|
|
866
870
|
msgid "Location"
|
|
867
871
|
msgstr ""
|
|
868
872
|
|
|
869
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
961
|
+
#: ../lib/hammer_cli_foreman/host.rb:243
|
|
958
962
|
msgid "FQDN"
|
|
959
963
|
msgstr ""
|
|
960
964
|
|
|
961
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
973
|
+
#: ../lib/hammer_cli_foreman/host.rb:251
|
|
970
974
|
msgid "Build"
|
|
971
975
|
msgstr ""
|
|
972
976
|
|
|
973
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
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:
|
|
989
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
|
986
990
|
msgid "Image"
|
|
987
991
|
msgstr ""
|
|
988
992
|
|
|
989
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
1013
|
+
#: ../lib/hammer_cli_foreman/host.rb:268
|
|
1010
1014
|
msgid "Enabled"
|
|
1011
1015
|
msgstr ""
|
|
1012
1016
|
|
|
1013
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
1021
|
+
#: ../lib/hammer_cli_foreman/host.rb:270
|
|
1018
1022
|
msgid "Comment"
|
|
1019
1023
|
msgstr ""
|
|
1020
1024
|
|
|
1021
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1025
|
+
#: ../lib/hammer_cli_foreman/host.rb:283
|
|
1022
1026
|
msgid "Status"
|
|
1023
1027
|
msgstr ""
|
|
1024
1028
|
|
|
1025
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
1029
|
+
#: ../lib/hammer_cli_foreman/host.rb:284
|
|
1026
1030
|
msgid "Power"
|
|
1027
1031
|
msgstr ""
|
|
1028
1032
|
|
|
1029
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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 "
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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 ""
|