hammer_cli_foreman 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of hammer_cli_foreman might be problematic. Click here for more details.
- 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
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
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-
|
11
|
+
"POT-Creation-Date: 2015-12-11 04:48+0000\n"
|
12
|
+
"PO-Revision-Date: 2015-12-11 04:48+0000\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -18,111 +18,111 @@ msgstr ""
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
19
19
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
20
20
|
|
21
|
-
#: ../lib/hammer_cli_foreman.rb:
|
21
|
+
#: ../lib/hammer_cli_foreman.rb:32
|
22
22
|
msgid "Foreman connection login/logout."
|
23
23
|
msgstr ""
|
24
24
|
|
25
|
-
#: ../lib/hammer_cli_foreman.rb:
|
25
|
+
#: ../lib/hammer_cli_foreman.rb:36
|
26
26
|
msgid "Manipulate architectures."
|
27
27
|
msgstr ""
|
28
28
|
|
29
|
-
#: ../lib/hammer_cli_foreman.rb:
|
29
|
+
#: ../lib/hammer_cli_foreman.rb:40
|
30
30
|
msgid "Manipulate auth sources."
|
31
31
|
msgstr ""
|
32
32
|
|
33
|
-
#: ../lib/hammer_cli_foreman.rb:
|
33
|
+
#: ../lib/hammer_cli_foreman.rb:44
|
34
34
|
msgid "Manipulate compute resources."
|
35
35
|
msgstr ""
|
36
36
|
|
37
|
-
#: ../lib/hammer_cli_foreman.rb:
|
37
|
+
#: ../lib/hammer_cli_foreman.rb:48
|
38
38
|
msgid "Manipulate domains."
|
39
39
|
msgstr ""
|
40
40
|
|
41
|
-
#: ../lib/hammer_cli_foreman.rb:
|
41
|
+
#: ../lib/hammer_cli_foreman.rb:52
|
42
42
|
msgid "Manipulate environments."
|
43
43
|
msgstr ""
|
44
44
|
|
45
|
-
#: ../lib/hammer_cli_foreman.rb:
|
45
|
+
#: ../lib/hammer_cli_foreman.rb:56
|
46
46
|
msgid "Search facts."
|
47
47
|
msgstr ""
|
48
48
|
|
49
|
-
#: ../lib/hammer_cli_foreman.rb:
|
49
|
+
#: ../lib/hammer_cli_foreman.rb:60
|
50
50
|
msgid "Manage permission filters."
|
51
51
|
msgstr ""
|
52
52
|
|
53
|
-
#: ../lib/hammer_cli_foreman.rb:
|
53
|
+
#: ../lib/hammer_cli_foreman.rb:64
|
54
54
|
msgid "Manipulate hosts."
|
55
55
|
msgstr ""
|
56
56
|
|
57
|
-
#: ../lib/hammer_cli_foreman.rb:
|
57
|
+
#: ../lib/hammer_cli_foreman.rb:68
|
58
58
|
msgid "Manipulate hostgroups."
|
59
59
|
msgstr ""
|
60
60
|
|
61
|
-
#: ../lib/hammer_cli_foreman.rb:
|
61
|
+
#: ../lib/hammer_cli_foreman.rb:72
|
62
62
|
msgid "Manipulate locations."
|
63
63
|
msgstr ""
|
64
64
|
|
65
|
-
#: ../lib/hammer_cli_foreman.rb:
|
65
|
+
#: ../lib/hammer_cli_foreman.rb:76
|
66
66
|
msgid "Manipulate installation media."
|
67
67
|
msgstr ""
|
68
68
|
|
69
|
-
#: ../lib/hammer_cli_foreman.rb:
|
69
|
+
#: ../lib/hammer_cli_foreman.rb:80
|
70
70
|
msgid "Manipulate hardware models."
|
71
71
|
msgstr ""
|
72
72
|
|
73
|
-
#: ../lib/hammer_cli_foreman.rb:
|
73
|
+
#: ../lib/hammer_cli_foreman.rb:84
|
74
74
|
msgid "Manipulate operating system."
|
75
75
|
msgstr ""
|
76
76
|
|
77
|
-
#: ../lib/hammer_cli_foreman.rb:
|
77
|
+
#: ../lib/hammer_cli_foreman.rb:88
|
78
78
|
msgid "Manipulate organizations."
|
79
79
|
msgstr ""
|
80
80
|
|
81
|
-
#: ../lib/hammer_cli_foreman.rb:
|
81
|
+
#: ../lib/hammer_cli_foreman.rb:92
|
82
82
|
msgid "Manipulate partition tables."
|
83
83
|
msgstr ""
|
84
84
|
|
85
|
-
#: ../lib/hammer_cli_foreman.rb:
|
85
|
+
#: ../lib/hammer_cli_foreman.rb:96
|
86
86
|
msgid "Search puppet modules."
|
87
87
|
msgstr ""
|
88
88
|
|
89
|
-
#: ../lib/hammer_cli_foreman.rb:
|
89
|
+
#: ../lib/hammer_cli_foreman.rb:100
|
90
90
|
msgid "Browse and read reports."
|
91
91
|
msgstr ""
|
92
92
|
|
93
|
-
#: ../lib/hammer_cli_foreman.rb:
|
93
|
+
#: ../lib/hammer_cli_foreman.rb:104
|
94
94
|
msgid "Manage user roles."
|
95
95
|
msgstr ""
|
96
96
|
|
97
|
-
#: ../lib/hammer_cli_foreman.rb:
|
97
|
+
#: ../lib/hammer_cli_foreman.rb:108
|
98
98
|
msgid "Manipulate smart class parameters."
|
99
99
|
msgstr ""
|
100
100
|
|
101
|
-
#: ../lib/hammer_cli_foreman.rb:
|
101
|
+
#: ../lib/hammer_cli_foreman.rb:112
|
102
102
|
msgid "Manipulate smart variables."
|
103
103
|
msgstr ""
|
104
104
|
|
105
|
-
#: ../lib/hammer_cli_foreman.rb:
|
105
|
+
#: ../lib/hammer_cli_foreman.rb:116
|
106
106
|
msgid "Manipulate smart proxies."
|
107
107
|
msgstr ""
|
108
108
|
|
109
|
-
#: ../lib/hammer_cli_foreman.rb:
|
109
|
+
#: ../lib/hammer_cli_foreman.rb:120
|
110
110
|
msgid "Change server settings."
|
111
111
|
msgstr ""
|
112
112
|
|
113
|
-
#: ../lib/hammer_cli_foreman.rb:
|
113
|
+
#: ../lib/hammer_cli_foreman.rb:124
|
114
114
|
msgid "Manipulate subnets."
|
115
115
|
msgstr ""
|
116
116
|
|
117
|
-
#: ../lib/hammer_cli_foreman.rb:
|
117
|
+
#: ../lib/hammer_cli_foreman.rb:128
|
118
118
|
msgid "Manipulate config templates."
|
119
119
|
msgstr ""
|
120
120
|
|
121
|
-
#: ../lib/hammer_cli_foreman.rb:
|
121
|
+
#: ../lib/hammer_cli_foreman.rb:132
|
122
122
|
msgid "Manipulate users."
|
123
123
|
msgstr ""
|
124
124
|
|
125
|
-
#: ../lib/hammer_cli_foreman.rb:
|
125
|
+
#: ../lib/hammer_cli_foreman.rb:136
|
126
126
|
msgid "Manage user groups."
|
127
127
|
msgstr ""
|
128
128
|
|
@@ -133,8 +133,8 @@ msgstr ""
|
|
133
133
|
#: ../lib/hammer_cli_foreman/environment.rb:14
|
134
134
|
#: ../lib/hammer_cli_foreman/external_usergroup.rb:10
|
135
135
|
#: ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72
|
136
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
137
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
136
|
+
#: ../lib/hammer_cli_foreman/host.rb:170 ../lib/hammer_cli_foreman/host.rb:207
|
137
|
+
#: ../lib/hammer_cli_foreman/host.rb:238
|
138
138
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:57
|
139
139
|
#: ../lib/hammer_cli_foreman/image.rb:29
|
140
140
|
#: ../lib/hammer_cli_foreman/interface.rb:23
|
@@ -169,8 +169,8 @@ msgstr ""
|
|
169
169
|
#: ../lib/hammer_cli_foreman/external_usergroup.rb:11
|
170
170
|
#: ../lib/hammer_cli_foreman/external_usergroup.rb:42
|
171
171
|
#: ../lib/hammer_cli_foreman/filter.rb:73
|
172
|
-
#: ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:
|
173
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
172
|
+
#: ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:171
|
173
|
+
#: ../lib/hammer_cli_foreman/host.rb:209
|
174
174
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:58
|
175
175
|
#: ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70
|
176
176
|
#: ../lib/hammer_cli_foreman/location.rb:14
|
@@ -533,34 +533,34 @@ msgstr ""
|
|
533
533
|
msgid "Could not update the Auth Source"
|
534
534
|
msgstr ""
|
535
535
|
|
536
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
536
|
+
#: ../lib/hammer_cli_foreman/commands.rb:87
|
537
537
|
msgid "Received data of unknown format"
|
538
538
|
msgstr ""
|
539
539
|
|
540
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
540
|
+
#: ../lib/hammer_cli_foreman/commands.rb:195
|
541
541
|
msgid ""
|
542
542
|
"Could not find %{resource}. Some search options were missing, please see --hel"
|
543
543
|
"p."
|
544
544
|
msgstr ""
|
545
545
|
|
546
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
546
|
+
#: ../lib/hammer_cli_foreman/commands.rb:197
|
547
547
|
msgid "Could not find %{resource}, please set option %{switches}."
|
548
548
|
msgstr ""
|
549
549
|
|
550
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
550
|
+
#: ../lib/hammer_cli_foreman/commands.rb:199
|
551
551
|
msgid "Could not find %{resource}, please set one of options %{switches}."
|
552
552
|
msgstr ""
|
553
553
|
|
554
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
554
|
+
#: ../lib/hammer_cli_foreman/commands.rb:521
|
555
555
|
msgid "Associate a resource"
|
556
556
|
msgstr ""
|
557
557
|
|
558
|
-
#: ../lib/hammer_cli_foreman/commands.rb:
|
558
|
+
#: ../lib/hammer_cli_foreman/commands.rb:543
|
559
559
|
msgid "Disassociate a resource"
|
560
560
|
msgstr ""
|
561
561
|
|
562
562
|
#: ../lib/hammer_cli_foreman/common_parameter.rb:13
|
563
|
-
#: ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:
|
563
|
+
#: ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:334
|
564
564
|
#: ../lib/hammer_cli_foreman/settings.rb:13
|
565
565
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:77
|
566
566
|
#: ../lib/hammer_cli_foreman/smart_variable.rb:65
|
@@ -609,7 +609,7 @@ msgstr ""
|
|
609
609
|
|
610
610
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:34
|
611
611
|
#: ../lib/hammer_cli_foreman/compute_resource.rb:40
|
612
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
612
|
+
#: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/image.rb:33
|
613
613
|
#: ../lib/hammer_cli_foreman/image.rb:71
|
614
614
|
msgid "UUID"
|
615
615
|
msgstr ""
|
@@ -675,6 +675,10 @@ msgstr ""
|
|
675
675
|
msgid "[Foreman] Password for %s: "
|
676
676
|
msgstr ""
|
677
677
|
|
678
|
+
#: ../lib/hammer_cli_foreman/defaults.rb:7
|
679
|
+
msgid "Use the default organization and/or location from the server"
|
680
|
+
msgstr ""
|
681
|
+
|
678
682
|
#: ../lib/hammer_cli_foreman/domain.rb:6
|
679
683
|
msgid "ID of DNS proxy to use within this domain"
|
680
684
|
msgstr ""
|
@@ -824,7 +828,7 @@ msgstr ""
|
|
824
828
|
msgid "Host"
|
825
829
|
msgstr ""
|
826
830
|
|
827
|
-
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:
|
831
|
+
#: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:333
|
828
832
|
msgid "Fact"
|
829
833
|
msgstr ""
|
830
834
|
|
@@ -850,12 +854,12 @@ msgstr ""
|
|
850
854
|
|
851
855
|
#: ../lib/hammer_cli_foreman/filter.rb:18
|
852
856
|
#: ../lib/hammer_cli_foreman/filter.rb:34
|
853
|
-
#: ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:
|
857
|
+
#: ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:46
|
854
858
|
msgid "(Miscellaneous)"
|
855
859
|
msgstr ""
|
856
860
|
|
857
861
|
#: ../lib/hammer_cli_foreman/filter.rb:19
|
858
|
-
#: ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:
|
862
|
+
#: ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:47
|
859
863
|
msgid "none"
|
860
864
|
msgstr ""
|
861
865
|
|
@@ -896,149 +900,149 @@ msgstr ""
|
|
896
900
|
msgid "ID of the owner"
|
897
901
|
msgstr ""
|
898
902
|
|
899
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
903
|
+
#: ../lib/hammer_cli_foreman/host.rb:44
|
900
904
|
msgid "Host parameters."
|
901
905
|
msgstr ""
|
902
906
|
|
903
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
907
|
+
#: ../lib/hammer_cli_foreman/host.rb:46
|
904
908
|
msgid "Compute resource attributes."
|
905
909
|
msgstr ""
|
906
910
|
|
907
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
911
|
+
#: ../lib/hammer_cli_foreman/host.rb:48
|
908
912
|
msgid "Volume parameters"
|
909
913
|
msgstr ""
|
910
914
|
|
911
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
915
|
+
#: ../lib/hammer_cli_foreman/host.rb:50
|
912
916
|
msgid "Interface parameters."
|
913
917
|
msgstr ""
|
914
918
|
|
915
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
919
|
+
#: ../lib/hammer_cli_foreman/host.rb:64
|
916
920
|
msgid "Enter the root password for the host:"
|
917
921
|
msgstr ""
|
918
922
|
|
919
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
923
|
+
#: ../lib/hammer_cli_foreman/host.rb:153
|
920
924
|
msgid "At least one interface must be set as primary"
|
921
925
|
msgstr ""
|
922
926
|
|
923
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
927
|
+
#: ../lib/hammer_cli_foreman/host.rb:156
|
924
928
|
msgid "At least one interface must be set as provision"
|
925
929
|
msgstr ""
|
926
930
|
|
927
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
931
|
+
#: ../lib/hammer_cli_foreman/host.rb:172 ../lib/hammer_cli_foreman/host.rb:248
|
928
932
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:60
|
929
933
|
#: ../lib/hammer_cli_foreman/image.rb:31
|
930
934
|
msgid "Operating System"
|
931
935
|
msgstr ""
|
932
936
|
|
933
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
937
|
+
#: ../lib/hammer_cli_foreman/host.rb:173 ../lib/hammer_cli_foreman/host.rb:212
|
934
938
|
msgid "Host Group"
|
935
939
|
msgstr ""
|
936
940
|
|
937
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
941
|
+
#: ../lib/hammer_cli_foreman/host.rb:174 ../lib/hammer_cli_foreman/host.rb:225
|
938
942
|
msgid "IP"
|
939
943
|
msgstr ""
|
940
944
|
|
941
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
945
|
+
#: ../lib/hammer_cli_foreman/host.rb:175 ../lib/hammer_cli_foreman/host.rb:226
|
942
946
|
msgid "MAC"
|
943
947
|
msgstr ""
|
944
948
|
|
945
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
949
|
+
#: ../lib/hammer_cli_foreman/host.rb:185
|
946
950
|
msgid "Bare Metal"
|
947
951
|
msgstr ""
|
948
952
|
|
949
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
953
|
+
#: ../lib/hammer_cli_foreman/host.rb:210
|
950
954
|
msgid "Organization"
|
951
955
|
msgstr ""
|
952
956
|
|
953
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
957
|
+
#: ../lib/hammer_cli_foreman/host.rb:211
|
954
958
|
msgid "Location"
|
955
959
|
msgstr ""
|
956
960
|
|
957
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
961
|
+
#: ../lib/hammer_cli_foreman/host.rb:213
|
958
962
|
msgid "Compute Resource"
|
959
963
|
msgstr ""
|
960
964
|
|
961
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
965
|
+
#: ../lib/hammer_cli_foreman/host.rb:214
|
962
966
|
msgid "Compute Profile"
|
963
967
|
msgstr ""
|
964
968
|
|
965
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
969
|
+
#: ../lib/hammer_cli_foreman/host.rb:215
|
966
970
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:61
|
967
971
|
msgid "Environment"
|
968
972
|
msgstr ""
|
969
973
|
|
970
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
974
|
+
#: ../lib/hammer_cli_foreman/host.rb:216
|
971
975
|
msgid "Puppet CA Id"
|
972
976
|
msgstr ""
|
973
977
|
|
974
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
978
|
+
#: ../lib/hammer_cli_foreman/host.rb:217
|
975
979
|
msgid "Puppet Master Id"
|
976
980
|
msgstr ""
|
977
981
|
|
978
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
982
|
+
#: ../lib/hammer_cli_foreman/host.rb:218
|
979
983
|
msgid "Cert name"
|
980
984
|
msgstr ""
|
981
985
|
|
982
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
986
|
+
#: ../lib/hammer_cli_foreman/host.rb:219
|
983
987
|
#: ../lib/hammer_cli_foreman/interface.rb:51
|
984
988
|
msgid "Managed"
|
985
989
|
msgstr ""
|
986
990
|
|
987
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
991
|
+
#: ../lib/hammer_cli_foreman/host.rb:221
|
988
992
|
msgid "Installed at"
|
989
993
|
msgstr ""
|
990
994
|
|
991
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
995
|
+
#: ../lib/hammer_cli_foreman/host.rb:222 ../lib/hammer_cli_foreman/report.rb:12
|
992
996
|
msgid "Last report"
|
993
997
|
msgstr ""
|
994
998
|
|
995
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
999
|
+
#: ../lib/hammer_cli_foreman/host.rb:224 ../lib/hammer_cli_foreman/subnet.rb:12
|
996
1000
|
msgid "Network"
|
997
1001
|
msgstr ""
|
998
1002
|
|
999
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1003
|
+
#: ../lib/hammer_cli_foreman/host.rb:227
|
1000
1004
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:72
|
1001
1005
|
#: ../lib/hammer_cli_foreman/interface.rb:49
|
1002
1006
|
msgid "Subnet"
|
1003
1007
|
msgstr ""
|
1004
1008
|
|
1005
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1009
|
+
#: ../lib/hammer_cli_foreman/host.rb:228
|
1006
1010
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:74
|
1007
1011
|
#: ../lib/hammer_cli_foreman/interface.rb:50
|
1008
1012
|
msgid "Domain"
|
1009
1013
|
msgstr ""
|
1010
1014
|
|
1011
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1015
|
+
#: ../lib/hammer_cli_foreman/host.rb:229
|
1012
1016
|
msgid "Service provider"
|
1013
1017
|
msgstr ""
|
1014
1018
|
|
1015
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1019
|
+
#: ../lib/hammer_cli_foreman/host.rb:230
|
1016
1020
|
msgid "SP Name"
|
1017
1021
|
msgstr ""
|
1018
1022
|
|
1019
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1023
|
+
#: ../lib/hammer_cli_foreman/host.rb:231
|
1020
1024
|
msgid "SP IP"
|
1021
1025
|
msgstr ""
|
1022
1026
|
|
1023
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1027
|
+
#: ../lib/hammer_cli_foreman/host.rb:232
|
1024
1028
|
msgid "SP MAC"
|
1025
1029
|
msgstr ""
|
1026
1030
|
|
1027
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1031
|
+
#: ../lib/hammer_cli_foreman/host.rb:233
|
1028
1032
|
msgid "SP Subnet"
|
1029
1033
|
msgstr ""
|
1030
1034
|
|
1031
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1035
|
+
#: ../lib/hammer_cli_foreman/host.rb:237
|
1032
1036
|
msgid "Network interfaces"
|
1033
1037
|
msgstr ""
|
1034
1038
|
|
1035
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1039
|
+
#: ../lib/hammer_cli_foreman/host.rb:239
|
1036
1040
|
#: ../lib/hammer_cli_foreman/interface.rb:24
|
1037
1041
|
#: ../lib/hammer_cli_foreman/interface.rb:44
|
1038
1042
|
msgid "Identifier"
|
1039
1043
|
msgstr ""
|
1040
1044
|
|
1041
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1045
|
+
#: ../lib/hammer_cli_foreman/host.rb:240
|
1042
1046
|
#: ../lib/hammer_cli_foreman/interface.rb:25
|
1043
1047
|
#: ../lib/hammer_cli_foreman/interface.rb:45
|
1044
1048
|
#: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62
|
@@ -1049,176 +1053,176 @@ msgstr ""
|
|
1049
1053
|
msgid "Type"
|
1050
1054
|
msgstr ""
|
1051
1055
|
|
1052
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1056
|
+
#: ../lib/hammer_cli_foreman/host.rb:241
|
1053
1057
|
#: ../lib/hammer_cli_foreman/interface.rb:26
|
1054
1058
|
#: ../lib/hammer_cli_foreman/interface.rb:46
|
1055
1059
|
msgid "MAC address"
|
1056
1060
|
msgstr ""
|
1057
1061
|
|
1058
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1062
|
+
#: ../lib/hammer_cli_foreman/host.rb:242
|
1059
1063
|
#: ../lib/hammer_cli_foreman/interface.rb:27
|
1060
1064
|
#: ../lib/hammer_cli_foreman/interface.rb:47
|
1061
1065
|
msgid "IP address"
|
1062
1066
|
msgstr ""
|
1063
1067
|
|
1064
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1068
|
+
#: ../lib/hammer_cli_foreman/host.rb:243
|
1065
1069
|
msgid "FQDN"
|
1066
1070
|
msgstr ""
|
1067
1071
|
|
1068
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1072
|
+
#: ../lib/hammer_cli_foreman/host.rb:246
|
1069
1073
|
msgid "Operating system"
|
1070
1074
|
msgstr ""
|
1071
1075
|
|
1072
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1076
|
+
#: ../lib/hammer_cli_foreman/host.rb:247
|
1073
1077
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:75
|
1074
1078
|
#: ../lib/hammer_cli_foreman/image.rb:45
|
1075
1079
|
msgid "Architecture"
|
1076
1080
|
msgstr ""
|
1077
1081
|
|
1078
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1082
|
+
#: ../lib/hammer_cli_foreman/host.rb:251
|
1079
1083
|
msgid "Build"
|
1080
1084
|
msgstr ""
|
1081
1085
|
|
1082
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1086
|
+
#: ../lib/hammer_cli_foreman/host.rb:252
|
1083
1087
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:77
|
1084
1088
|
msgid "Medium"
|
1085
1089
|
msgstr ""
|
1086
1090
|
|
1087
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1091
|
+
#: ../lib/hammer_cli_foreman/host.rb:253
|
1088
1092
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:76
|
1089
1093
|
msgid "Partition Table"
|
1090
1094
|
msgstr ""
|
1091
1095
|
|
1092
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1096
|
+
#: ../lib/hammer_cli_foreman/host.rb:254
|
1093
1097
|
msgid "Custom partition table"
|
1094
1098
|
msgstr ""
|
1095
1099
|
|
1096
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1100
|
+
#: ../lib/hammer_cli_foreman/host.rb:257
|
1097
1101
|
msgid "Image"
|
1098
1102
|
msgstr ""
|
1099
1103
|
|
1100
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1104
|
+
#: ../lib/hammer_cli_foreman/host.rb:258
|
1101
1105
|
msgid "Image file"
|
1102
1106
|
msgstr ""
|
1103
1107
|
|
1104
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1108
|
+
#: ../lib/hammer_cli_foreman/host.rb:259
|
1105
1109
|
msgid "Use image"
|
1106
1110
|
msgstr ""
|
1107
1111
|
|
1108
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1112
|
+
#: ../lib/hammer_cli_foreman/host.rb:265
|
1109
1113
|
msgid "Additional info"
|
1110
1114
|
msgstr ""
|
1111
1115
|
|
1112
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1116
|
+
#: ../lib/hammer_cli_foreman/host.rb:266
|
1113
1117
|
msgid "Owner Id"
|
1114
1118
|
msgstr ""
|
1115
1119
|
|
1116
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1120
|
+
#: ../lib/hammer_cli_foreman/host.rb:267
|
1117
1121
|
msgid "Owner Type"
|
1118
1122
|
msgstr ""
|
1119
1123
|
|
1120
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1124
|
+
#: ../lib/hammer_cli_foreman/host.rb:268
|
1121
1125
|
msgid "Enabled"
|
1122
1126
|
msgstr ""
|
1123
1127
|
|
1124
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1128
|
+
#: ../lib/hammer_cli_foreman/host.rb:269
|
1125
1129
|
#: ../lib/hammer_cli_foreman/hostgroup.rb:62
|
1126
1130
|
msgid "Model"
|
1127
1131
|
msgstr ""
|
1128
1132
|
|
1129
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1133
|
+
#: ../lib/hammer_cli_foreman/host.rb:270
|
1130
1134
|
msgid "Comment"
|
1131
1135
|
msgstr ""
|
1132
1136
|
|
1133
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1137
|
+
#: ../lib/hammer_cli_foreman/host.rb:283
|
1134
1138
|
msgid "Status"
|
1135
1139
|
msgstr ""
|
1136
1140
|
|
1137
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1141
|
+
#: ../lib/hammer_cli_foreman/host.rb:284
|
1138
1142
|
msgid "Power"
|
1139
1143
|
msgstr ""
|
1140
1144
|
|
1141
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1145
|
+
#: ../lib/hammer_cli_foreman/host.rb:320
|
1142
1146
|
msgid "Puppet run triggered"
|
1143
1147
|
msgstr ""
|
1144
1148
|
|
1145
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1149
|
+
#: ../lib/hammer_cli_foreman/host.rb:373
|
1146
1150
|
msgid "Host created"
|
1147
1151
|
msgstr ""
|
1148
1152
|
|
1149
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1153
|
+
#: ../lib/hammer_cli_foreman/host.rb:374
|
1150
1154
|
msgid "Could not create the host"
|
1151
1155
|
msgstr ""
|
1152
1156
|
|
1153
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1157
|
+
#: ../lib/hammer_cli_foreman/host.rb:395
|
1154
1158
|
msgid "Host updated"
|
1155
1159
|
msgstr ""
|
1156
1160
|
|
1157
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1161
|
+
#: ../lib/hammer_cli_foreman/host.rb:396
|
1158
1162
|
msgid "Could not update the host"
|
1159
1163
|
msgstr ""
|
1160
1164
|
|
1161
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1165
|
+
#: ../lib/hammer_cli_foreman/host.rb:403
|
1162
1166
|
msgid "Host deleted"
|
1163
1167
|
msgstr ""
|
1164
1168
|
|
1165
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1169
|
+
#: ../lib/hammer_cli_foreman/host.rb:404
|
1166
1170
|
msgid "Could not delete the host"
|
1167
1171
|
msgstr ""
|
1168
1172
|
|
1169
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1173
|
+
#: ../lib/hammer_cli_foreman/host.rb:411
|
1170
1174
|
msgid "Create or update parameter for a host."
|
1171
1175
|
msgstr ""
|
1172
1176
|
|
1173
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1177
|
+
#: ../lib/hammer_cli_foreman/host.rb:413
|
1174
1178
|
msgid "Host parameter updated"
|
1175
1179
|
msgstr ""
|
1176
1180
|
|
1177
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1181
|
+
#: ../lib/hammer_cli_foreman/host.rb:414
|
1178
1182
|
msgid "New host parameter created"
|
1179
1183
|
msgstr ""
|
1180
1184
|
|
1181
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1185
|
+
#: ../lib/hammer_cli_foreman/host.rb:415
|
1182
1186
|
msgid "Could not set host parameter"
|
1183
1187
|
msgstr ""
|
1184
1188
|
|
1185
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1189
|
+
#: ../lib/hammer_cli_foreman/host.rb:427
|
1186
1190
|
msgid "Delete parameter for a host."
|
1187
1191
|
msgstr ""
|
1188
1192
|
|
1189
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1193
|
+
#: ../lib/hammer_cli_foreman/host.rb:429
|
1190
1194
|
msgid "Host parameter deleted"
|
1191
1195
|
msgstr ""
|
1192
1196
|
|
1193
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1197
|
+
#: ../lib/hammer_cli_foreman/host.rb:444
|
1194
1198
|
msgid "Power a host on"
|
1195
1199
|
msgstr ""
|
1196
1200
|
|
1197
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1201
|
+
#: ../lib/hammer_cli_foreman/host.rb:445
|
1198
1202
|
msgid "The host is starting."
|
1199
1203
|
msgstr ""
|
1200
1204
|
|
1201
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1205
|
+
#: ../lib/hammer_cli_foreman/host.rb:462
|
1202
1206
|
msgid "Force turning off a host"
|
1203
1207
|
msgstr ""
|
1204
1208
|
|
1205
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1209
|
+
#: ../lib/hammer_cli_foreman/host.rb:467
|
1206
1210
|
msgid "Power a host off"
|
1207
1211
|
msgstr ""
|
1208
1212
|
|
1209
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1213
|
+
#: ../lib/hammer_cli_foreman/host.rb:479
|
1210
1214
|
msgid "Power off forced."
|
1211
1215
|
msgstr ""
|
1212
1216
|
|
1213
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1217
|
+
#: ../lib/hammer_cli_foreman/host.rb:481
|
1214
1218
|
msgid "Powering the host off."
|
1215
1219
|
msgstr ""
|
1216
1220
|
|
1217
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1221
|
+
#: ../lib/hammer_cli_foreman/host.rb:498
|
1218
1222
|
msgid "Reboot a host"
|
1219
1223
|
msgstr ""
|
1220
1224
|
|
1221
|
-
#: ../lib/hammer_cli_foreman/host.rb:
|
1225
|
+
#: ../lib/hammer_cli_foreman/host.rb:499
|
1222
1226
|
msgid "Host reboot started."
|
1223
1227
|
msgstr ""
|
1224
1228
|
|
@@ -1420,7 +1424,7 @@ msgid "%s not found"
|
|
1420
1424
|
msgstr ""
|
1421
1425
|
|
1422
1426
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:201
|
1423
|
-
msgid "
|
1427
|
+
msgid "found more than one %s"
|
1424
1428
|
msgstr ""
|
1425
1429
|
|
1426
1430
|
#: ../lib/hammer_cli_foreman/id_resolver.rb:212
|
@@ -1601,6 +1605,37 @@ msgstr ""
|
|
1601
1605
|
msgid "Could not delete the location"
|
1602
1606
|
msgstr ""
|
1603
1607
|
|
1608
|
+
#: ../lib/hammer_cli_foreman/location.rb:86
|
1609
|
+
msgid "Create or update parameter for a location."
|
1610
|
+
msgstr ""
|
1611
|
+
|
1612
|
+
#: ../lib/hammer_cli_foreman/location.rb:88
|
1613
|
+
#: ../lib/hammer_cli_foreman/organization.rb:89
|
1614
|
+
msgid "Parameter [%{name}] updated to value [%{value}]"
|
1615
|
+
msgstr ""
|
1616
|
+
|
1617
|
+
#: ../lib/hammer_cli_foreman/location.rb:89
|
1618
|
+
#: ../lib/hammer_cli_foreman/organization.rb:90
|
1619
|
+
msgid "Parameter [%{name}] created with value [%{value}]"
|
1620
|
+
msgstr ""
|
1621
|
+
|
1622
|
+
#: ../lib/hammer_cli_foreman/location.rb:90
|
1623
|
+
msgid "Could not set location parameter"
|
1624
|
+
msgstr ""
|
1625
|
+
|
1626
|
+
#: ../lib/hammer_cli_foreman/location.rb:97
|
1627
|
+
msgid "Delete parameter for a location."
|
1628
|
+
msgstr ""
|
1629
|
+
|
1630
|
+
#: ../lib/hammer_cli_foreman/location.rb:99
|
1631
|
+
#: ../lib/hammer_cli_foreman/organization.rb:100
|
1632
|
+
msgid "Parameter [%{name}] deleted"
|
1633
|
+
msgstr ""
|
1634
|
+
|
1635
|
+
#: ../lib/hammer_cli_foreman/location.rb:100
|
1636
|
+
msgid "Could not delete location parameter"
|
1637
|
+
msgstr ""
|
1638
|
+
|
1604
1639
|
#: ../lib/hammer_cli_foreman/media.rb:11
|
1605
1640
|
msgid "Path"
|
1606
1641
|
msgstr ""
|
@@ -1808,6 +1843,22 @@ msgstr ""
|
|
1808
1843
|
msgid "Could not delete the organization"
|
1809
1844
|
msgstr ""
|
1810
1845
|
|
1846
|
+
#: ../lib/hammer_cli_foreman/organization.rb:87
|
1847
|
+
msgid "Create or update parameter for an organization."
|
1848
|
+
msgstr ""
|
1849
|
+
|
1850
|
+
#: ../lib/hammer_cli_foreman/organization.rb:91
|
1851
|
+
msgid "Could not set organization parameter"
|
1852
|
+
msgstr ""
|
1853
|
+
|
1854
|
+
#: ../lib/hammer_cli_foreman/organization.rb:98
|
1855
|
+
msgid "Delete parameter for an organization."
|
1856
|
+
msgstr ""
|
1857
|
+
|
1858
|
+
#: ../lib/hammer_cli_foreman/organization.rb:101
|
1859
|
+
msgid "Could not delete organization parameter"
|
1860
|
+
msgstr ""
|
1861
|
+
|
1811
1862
|
#: ../lib/hammer_cli_foreman/partition_table.rb:31
|
1812
1863
|
msgid "View partition table content."
|
1813
1864
|
msgstr ""
|
@@ -2028,31 +2079,43 @@ msgstr ""
|
|
2028
2079
|
msgid "The server does not support such operation."
|
2029
2080
|
msgstr ""
|
2030
2081
|
|
2031
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
2082
|
+
#: ../lib/hammer_cli_foreman/role.rb:20
|
2083
|
+
msgid "Builtin"
|
2084
|
+
msgstr ""
|
2085
|
+
|
2086
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
2087
|
+
msgid "No"
|
2088
|
+
msgstr ""
|
2089
|
+
|
2090
|
+
#: ../lib/hammer_cli_foreman/role.rb:24
|
2091
|
+
msgid "Yes"
|
2092
|
+
msgstr ""
|
2093
|
+
|
2094
|
+
#: ../lib/hammer_cli_foreman/role.rb:36
|
2032
2095
|
msgid "User role id"
|
2033
2096
|
msgstr ""
|
2034
2097
|
|
2035
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
2098
|
+
#: ../lib/hammer_cli_foreman/role.rb:60
|
2036
2099
|
msgid "User role [%<name>s] created"
|
2037
2100
|
msgstr ""
|
2038
2101
|
|
2039
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
2102
|
+
#: ../lib/hammer_cli_foreman/role.rb:61
|
2040
2103
|
msgid "Could not create the user role"
|
2041
2104
|
msgstr ""
|
2042
2105
|
|
2043
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
2106
|
+
#: ../lib/hammer_cli_foreman/role.rb:68
|
2044
2107
|
msgid "User role [%<name>s] updated"
|
2045
2108
|
msgstr ""
|
2046
2109
|
|
2047
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
2110
|
+
#: ../lib/hammer_cli_foreman/role.rb:69
|
2048
2111
|
msgid "Could not update the user role"
|
2049
2112
|
msgstr ""
|
2050
2113
|
|
2051
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
2114
|
+
#: ../lib/hammer_cli_foreman/role.rb:76
|
2052
2115
|
msgid "User role [%<name>s] deleted"
|
2053
2116
|
msgstr ""
|
2054
2117
|
|
2055
|
-
#: ../lib/hammer_cli_foreman/role.rb:
|
2118
|
+
#: ../lib/hammer_cli_foreman/role.rb:77
|
2056
2119
|
msgid "Could not delete the user roles"
|
2057
2120
|
msgstr ""
|
2058
2121
|
|
@@ -2288,6 +2351,10 @@ msgstr ""
|
|
2288
2351
|
msgid "DHCP"
|
2289
2352
|
msgstr ""
|
2290
2353
|
|
2354
|
+
#: ../lib/hammer_cli_foreman/subnet.rb:29
|
2355
|
+
msgid "IPAM"
|
2356
|
+
msgstr ""
|
2357
|
+
|
2291
2358
|
#: ../lib/hammer_cli_foreman/subnet.rb:30
|
2292
2359
|
msgid "VLAN ID"
|
2293
2360
|
msgstr ""
|