hammer_cli_foreman_puppet 0.0.6 → 0.1.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/lib/hammer_cli_foreman_puppet/associating_commands.rb +1 -1
- data/lib/hammer_cli_foreman_puppet/class.rb +1 -3
- data/lib/hammer_cli_foreman_puppet/combination.rb +0 -1
- data/lib/hammer_cli_foreman_puppet/command_extensions/combination.rb +3 -3
- data/lib/hammer_cli_foreman_puppet/commands.rb +3 -2
- data/lib/hammer_cli_foreman_puppet/host.rb +4 -5
- data/lib/hammer_cli_foreman_puppet/hostgroup.rb +7 -8
- data/lib/hammer_cli_foreman_puppet/i18n.rb +2 -2
- data/lib/hammer_cli_foreman_puppet/id_resolver.rb +5 -5
- data/lib/hammer_cli_foreman_puppet/option_sources/puppet_environment_params.rb +1 -2
- data/lib/hammer_cli_foreman_puppet/puppet_references.rb +0 -1
- data/lib/hammer_cli_foreman_puppet/smart_class_parameter.rb +6 -6
- data/lib/hammer_cli_foreman_puppet/smart_proxy.rb +2 -2
- data/lib/hammer_cli_foreman_puppet/version.rb +1 -1
- data/locale/cs_CZ/LC_MESSAGES/hammer-cli-foreman-puppet.mo +0 -0
- data/locale/cs_CZ/hammer-cli-foreman-puppet.po +282 -0
- data/locale/de/LC_MESSAGES/hammer-cli-foreman-puppet.mo +0 -0
- data/locale/de/hammer-cli-foreman-puppet.po +293 -0
- data/locale/en/LC_MESSAGES/hammer-cli-foreman-puppet.mo +0 -0
- data/locale/en/hammer-cli-foreman-puppet.po +276 -0
- data/locale/es/LC_MESSAGES/hammer-cli-foreman-puppet.mo +0 -0
- data/locale/es/hammer-cli-foreman-puppet.po +287 -0
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman-puppet.mo +0 -0
- data/locale/fr/hammer-cli-foreman-puppet.po +285 -0
- data/locale/hammer-cli-foreman-puppet.pot +386 -0
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman-puppet.mo +0 -0
- data/locale/ja/hammer-cli-foreman-puppet.po +283 -0
- data/locale/ka/LC_MESSAGES/hammer-cli-foreman-puppet.mo +0 -0
- data/locale/ka/hammer-cli-foreman-puppet.po +280 -0
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman-puppet.mo +0 -0
- data/locale/pt_BR/hammer-cli-foreman-puppet.po +288 -0
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman-puppet.mo +0 -0
- data/locale/zh_CN/hammer-cli-foreman-puppet.po +283 -0
- metadata +31 -57
- data/test/data/2.1/foreman_api.json +0 -1
- data/test/data/3.0/foreman_api.json +0 -1
- data/test/data/3.3/foreman_api.json +0 -1
- data/test/data/README.md +0 -27
- data/test/functional/config_group_test.rb +0 -28
- data/test/functional/host/create_test.rb +0 -195
- data/test/functional/host/update_test.rb +0 -126
- data/test/functional/hostgroup/create_test.rb +0 -178
- data/test/functional/hostgroup/update_test.rb +0 -126
- data/test/functional/proxy_test.rb +0 -86
- data/test/functional/smart_class_parameter_test.rb +0 -97
- data/test/functional/template_test.rb +0 -38
- data/test/functional/test_helper.rb +0 -7
- data/test/test_helper.rb +0 -29
- data/test/unit/apipie_resource_mock.rb +0 -186
- data/test/unit/config_group_test.rb +0 -73
- data/test/unit/helpers/command.rb +0 -163
- data/test/unit/helpers/fake_searchables.rb +0 -19
- data/test/unit/helpers/resource_disabled.rb +0 -24
- data/test/unit/puppet_class_test.rb +0 -72
- data/test/unit/puppet_environment_test.rb +0 -116
- data/test/unit/smart_class_parameter_test.rb +0 -114
- data/test/unit/test_helper.rb +0 -18
- data/test/unit/test_output_adapter.rb +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a122abe687abc3a97d641fa4569a8e52853a5d4611754a22f31c58f6c3d7444e
|
4
|
+
data.tar.gz: e08b06fbe287e8d49186b4f503d4fddc68e6be5b0b9c9f1056efefeb3f16881d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57f4624e3954f5e65ba7923c3152052dde2c6158a287d723f183bd6bb0c720e156bb9e391bfc7ba0498fb2e7ab7bf555908ff5ff7ccbe504a8ccf0b1396be7a9
|
7
|
+
data.tar.gz: 0e56e3d3762ed0ae6f114361a1c2fcd95b7313dc84e4d9c25c409514c42ab99e171ff3b3a0b3a48a090771b336def4b68b02c23c76c7aeefb11f12f9af5d1b9d
|
@@ -1 +1 @@
|
|
1
|
-
require 'hammer_cli_foreman_puppet/associating_commands/associating_commands'
|
1
|
+
require 'hammer_cli_foreman_puppet/associating_commands/associating_commands'
|
@@ -1,6 +1,5 @@
|
|
1
1
|
module HammerCLIForemanPuppet
|
2
2
|
class PuppetClass < HammerCLIForemanPuppet::Command
|
3
|
-
|
4
3
|
resource :puppetclasses
|
5
4
|
|
6
5
|
class ListCommand < HammerCLIForemanPuppet::ListCommand
|
@@ -14,7 +13,7 @@ module HammerCLIForemanPuppet
|
|
14
13
|
end
|
15
14
|
|
16
15
|
def self.unhash_classes(classes)
|
17
|
-
clss = classes.first.inject([]) { |list, (
|
16
|
+
clss = classes.first.inject([]) { |list, (_pp_module, pp_module_classes)| list + pp_module_classes }
|
18
17
|
|
19
18
|
HammerCLI::Output::RecordCollection.new(clss, :meta => classes.meta)
|
20
19
|
end
|
@@ -39,7 +38,6 @@ module HammerCLIForemanPuppet
|
|
39
38
|
extend_with(HammerCLIForemanPuppet::CommandExtensions::PuppetEnvironment.new)
|
40
39
|
end
|
41
40
|
|
42
|
-
|
43
41
|
class SCParamsCommand < HammerCLIForemanPuppet::SmartClassParametersBriefList
|
44
42
|
build_options_for :puppetclasses
|
45
43
|
|
@@ -7,9 +7,9 @@ module HammerCLIForemanPuppet
|
|
7
7
|
end
|
8
8
|
|
9
9
|
class InfoCombination < HammerCLI::CommandExtensions
|
10
|
-
|
11
|
-
|
12
|
-
end
|
10
|
+
output do |definition|
|
11
|
+
definition.insert(:after, :hostgroup_name, HammerCLIForemanPuppet::Combination::InfoCommand.output_definition.fields)
|
13
12
|
end
|
13
|
+
end
|
14
14
|
end
|
15
15
|
end
|
@@ -15,8 +15,8 @@ module HammerCLIForemanPuppet
|
|
15
15
|
def self.included(base)
|
16
16
|
base.extend(ClassMethods)
|
17
17
|
end
|
18
|
-
module ClassMethods
|
19
18
|
|
19
|
+
module ClassMethods
|
20
20
|
def api_connection
|
21
21
|
if HammerCLI.context[:api_connection]
|
22
22
|
HammerCLI.context[:api_connection].get("foreman")
|
@@ -31,6 +31,7 @@ module HammerCLIForemanPuppet
|
|
31
31
|
HammerCLIForemanPuppet::Searchables.new
|
32
32
|
)
|
33
33
|
end
|
34
|
+
|
34
35
|
def resource_name_mapping
|
35
36
|
HammerCLIForemanPuppet::RESOURCE_NAME_MAPPING.dup
|
36
37
|
end
|
@@ -73,4 +74,4 @@ module HammerCLIForemanPuppet
|
|
73
74
|
class RemoveAssociatedCommand < HammerCLIForeman::RemoveAssociatedCommand
|
74
75
|
include HammerCLIForemanPuppet::ResolverCommons
|
75
76
|
end
|
76
|
-
end
|
77
|
+
end
|
@@ -5,7 +5,6 @@ require 'hammer_cli_foreman_puppet/command_extensions/host'
|
|
5
5
|
|
6
6
|
module HammerCLIForemanPuppet
|
7
7
|
class Host < HammerCLIForemanPuppet::Command
|
8
|
-
|
9
8
|
class PuppetClassesCommand < HammerCLIForemanPuppet::ListCommand
|
10
9
|
include EnvironmentNameMapping
|
11
10
|
command_name "puppet-classes"
|
@@ -44,12 +43,12 @@ module HammerCLIForemanPuppet
|
|
44
43
|
end
|
45
44
|
|
46
45
|
HammerCLIForeman::Host.subcommand 'puppet-classes',
|
47
|
-
|
48
|
-
|
46
|
+
HammerCLIForemanPuppet::Host::PuppetClassesCommand.desc,
|
47
|
+
HammerCLIForemanPuppet::Host::PuppetClassesCommand
|
49
48
|
|
50
49
|
HammerCLIForeman::Host.subcommand 'sc-params',
|
51
|
-
|
52
|
-
|
50
|
+
HammerCLIForemanPuppet::Host::SCParamsCommand.desc,
|
51
|
+
HammerCLIForemanPuppet::Host::SCParamsCommand
|
53
52
|
|
54
53
|
HammerCLIForeman::Host::ListCommand.extend_with(
|
55
54
|
HammerCLIForemanPuppet::CommandExtensions::PuppetEnvironment.new
|
@@ -1,9 +1,8 @@
|
|
1
1
|
require 'hammer_cli_foreman/hostgroup'
|
2
|
-
require 'hammer_cli_foreman_puppet/command_extensions/hostgroup
|
2
|
+
require 'hammer_cli_foreman_puppet/command_extensions/hostgroup'
|
3
3
|
|
4
4
|
module HammerCLIForemanPuppet
|
5
5
|
class Hostgroup < HammerCLIForemanPuppet::Command
|
6
|
-
|
7
6
|
class PuppetClassesCommand < HammerCLIForemanPuppet::ListCommand
|
8
7
|
command_name "puppet-classes"
|
9
8
|
resource :puppetclasses
|
@@ -47,12 +46,12 @@ module HammerCLIForemanPuppet
|
|
47
46
|
end
|
48
47
|
|
49
48
|
HammerCLIForeman::Hostgroup.subcommand 'puppet-classes',
|
50
|
-
|
51
|
-
|
49
|
+
HammerCLIForemanPuppet::Hostgroup::PuppetClassesCommand.desc,
|
50
|
+
HammerCLIForemanPuppet::Hostgroup::PuppetClassesCommand
|
52
51
|
|
53
52
|
HammerCLIForeman::Hostgroup.subcommand 'sc-params',
|
54
|
-
|
55
|
-
|
53
|
+
HammerCLIForemanPuppet::Hostgroup::PuppetSCParamsCommand.desc,
|
54
|
+
HammerCLIForemanPuppet::Hostgroup::PuppetSCParamsCommand
|
56
55
|
|
57
56
|
HammerCLIForeman::Hostgroup::CreateCommand.include(HammerCLIForemanPuppet::EnvironmentNameMapping)
|
58
57
|
# Delete deprecated options explicitly until they are deleted from API
|
@@ -75,6 +74,6 @@ module HammerCLIForemanPuppet
|
|
75
74
|
HammerCLIForeman::Hostgroup::ListCommand.extend_with(
|
76
75
|
HammerCLIForemanPuppet::CommandExtensions::HostgroupList.new
|
77
76
|
)
|
78
|
-
#TODO - adding puppet class options
|
79
|
-
#TODO - resolver
|
77
|
+
# TODO: - adding puppet class options
|
78
|
+
# TODO - resolver
|
80
79
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
#frozen_string_literal: true
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'hammer_cli/i18n'
|
4
4
|
module HammerCLIForemanPuppet
|
@@ -23,4 +23,4 @@ module HammerCLIForemanPuppet
|
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
26
|
-
HammerCLI::I18n.add_domain(HammerCLIForemanPuppet::I18n::LocaleDomain.new)
|
26
|
+
HammerCLI::I18n.add_domain(HammerCLIForemanPuppet::I18n::LocaleDomain.new)
|
@@ -15,7 +15,7 @@ module HammerCLIForemanPuppet
|
|
15
15
|
def puppetclass_ids(options)
|
16
16
|
resource_name = :puppetclasses
|
17
17
|
resource = @api.resource(resource_name)
|
18
|
-
|
18
|
+
if (ids = options[HammerCLI.option_accessor_name("ids")])
|
19
19
|
ids
|
20
20
|
elsif (ids = nil_from_searchables(resource_name, options, :plural => true))
|
21
21
|
ids
|
@@ -29,7 +29,7 @@ module HammerCLIForemanPuppet
|
|
29
29
|
resolved_call(resource_name, :index, options, :multi)
|
30
30
|
)
|
31
31
|
raise HammerCLIForeman::ResolverError.new(_("one of %s not found.") % resource.name, resource) if results.count < expected_record_count(options, resource, :multi)
|
32
|
-
|
32
|
+
results.map { |r| r['id'] }
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
@@ -66,10 +66,10 @@ module HammerCLIForemanPuppet
|
|
66
66
|
|
67
67
|
class Searchables < HammerCLIForeman::Searchables
|
68
68
|
SEARCHABLES = {
|
69
|
-
:environment =>
|
69
|
+
:environment => [s_name(_('Puppet environment name'))],
|
70
70
|
:puppet_environment => [s_name(_('Puppet environment name'))],
|
71
|
-
:puppetclass =>
|
72
|
-
:smart_class_parameter => [
|
71
|
+
:puppetclass => [s_name(_("Puppet class name"))],
|
72
|
+
:smart_class_parameter => [s_name(_("Smart class parameter name"), :editable => false)]
|
73
73
|
}.freeze
|
74
74
|
|
75
75
|
DEFAULT_SEARCHABLES = [s_name(_("Name to search by"))].freeze
|
@@ -1,5 +1,4 @@
|
|
1
1
|
module HammerCLIForemanPuppet
|
2
|
-
|
3
2
|
class SmartClassParametersBriefList < HammerCLIForemanPuppet::ListCommand
|
4
3
|
resource :smart_class_parameters, :index
|
5
4
|
command_name 'sc-params'
|
@@ -110,14 +109,15 @@ module HammerCLIForemanPuppet
|
|
110
109
|
end
|
111
110
|
|
112
111
|
option "--override", "OVERRIDE", _("Override this parameter"),
|
113
|
-
|
112
|
+
:format => HammerCLI::Options::Normalizers::Bool.new
|
114
113
|
option "--required", "REQUIRED", _("This parameter is required"),
|
115
|
-
|
114
|
+
:format => HammerCLI::Options::Normalizers::Bool.new
|
116
115
|
option "--parameter-type", "PARAMETER_TYPE", _("Type of the parameter"),
|
117
|
-
|
118
|
-
|
116
|
+
:format => HammerCLI::Options::Normalizers::Enum.new(
|
117
|
+
%w[string boolean integer real array hash yaml json]
|
118
|
+
)
|
119
119
|
option "--validator-type", "VALIDATOR_TYPE", _("Type of the validator"),
|
120
|
-
|
120
|
+
:format => HammerCLI::Options::Normalizers::Enum.new(['regexp', 'list', ''])
|
121
121
|
option "--override-value-order", "OVERRIDE_VALUE_ORDER", _("The order in which values are resolved"),
|
122
122
|
:format => HammerCLI::Options::Normalizers::List.new
|
123
123
|
|
@@ -53,6 +53,6 @@ module HammerCLIForemanPuppet
|
|
53
53
|
extend_with(HammerCLIForemanPuppet::CommandExtensions::PuppetEnvironment.new)
|
54
54
|
end
|
55
55
|
HammerCLIForeman::SmartProxy.subcommand 'import-classes',
|
56
|
-
|
57
|
-
|
56
|
+
HammerCLIForemanPuppet::ImportPuppetClassesCommand.desc,
|
57
|
+
HammerCLIForemanPuppet::ImportPuppetClassesCommand
|
58
58
|
end
|
Binary file
|
@@ -0,0 +1,282 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
+
# This file is distributed under the same license as the hammer-cli-foreman-puppet package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
|
+
#
|
6
|
+
# Translators:
|
7
|
+
# Pavel Borecki <pavel.borecki@gmail.com>, 2021
|
8
|
+
#
|
9
|
+
#, fuzzy
|
10
|
+
msgid ""
|
11
|
+
msgstr ""
|
12
|
+
"Project-Id-Version: hammer-cli-foreman-puppet 0.0.6\n"
|
13
|
+
"Report-Msgid-Bugs-To: \n"
|
14
|
+
"POT-Creation-Date: 2021-08-02 23:05+0530\n"
|
15
|
+
"PO-Revision-Date: 2021-08-02 17:36+0000\n"
|
16
|
+
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2021\n"
|
17
|
+
"Language-Team: Czech (Czech Republic) (https://app.transifex.com/foreman/"
|
18
|
+
"teams/114/cs_CZ/)\n"
|
19
|
+
"MIME-Version: 1.0\n"
|
20
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
21
|
+
"Content-Transfer-Encoding: 8bit\n"
|
22
|
+
"Language: cs_CZ\n"
|
23
|
+
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
|
24
|
+
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
25
|
+
|
26
|
+
msgid "Manage Foreman Puppet classes"
|
27
|
+
msgstr ""
|
28
|
+
|
29
|
+
msgid "Manage Foreman Puppet environments"
|
30
|
+
msgstr ""
|
31
|
+
|
32
|
+
msgid "Manage Foreman config groups"
|
33
|
+
msgstr ""
|
34
|
+
|
35
|
+
msgid "Manage Foreman Puppet smart class parameters"
|
36
|
+
msgstr ""
|
37
|
+
|
38
|
+
msgid "Associate a Puppet environment"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
msgid "The environment has been associated."
|
42
|
+
msgstr ""
|
43
|
+
|
44
|
+
msgid "Could not associate the environment"
|
45
|
+
msgstr ""
|
46
|
+
|
47
|
+
msgid "Disassociate a Puppet environment"
|
48
|
+
msgstr ""
|
49
|
+
|
50
|
+
msgid "The environment has been disassociated."
|
51
|
+
msgstr ""
|
52
|
+
|
53
|
+
msgid "Could not disassociate the environment"
|
54
|
+
msgstr ""
|
55
|
+
|
56
|
+
msgid "Id"
|
57
|
+
msgstr "Identifikátor"
|
58
|
+
|
59
|
+
msgid "Name"
|
60
|
+
msgstr "Název"
|
61
|
+
|
62
|
+
msgid "Smart class parameters"
|
63
|
+
msgstr ""
|
64
|
+
|
65
|
+
msgid "ID of associated Puppet environment"
|
66
|
+
msgstr ""
|
67
|
+
|
68
|
+
msgid "Name of associated Puppet environment"
|
69
|
+
msgstr ""
|
70
|
+
|
71
|
+
msgid "IDs of associated Puppet environment"
|
72
|
+
msgstr ""
|
73
|
+
|
74
|
+
msgid "Names of associated Puppet environment"
|
75
|
+
msgstr ""
|
76
|
+
|
77
|
+
msgid "List of Puppet class ids"
|
78
|
+
msgstr ""
|
79
|
+
|
80
|
+
msgid "Name of Puppet CA proxy"
|
81
|
+
msgstr ""
|
82
|
+
|
83
|
+
msgid "Name of Puppet proxy"
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
msgid "ID"
|
87
|
+
msgstr "Identifikátor"
|
88
|
+
|
89
|
+
msgid "Config group created."
|
90
|
+
msgstr ""
|
91
|
+
|
92
|
+
msgid "Could not create the config group"
|
93
|
+
msgstr ""
|
94
|
+
|
95
|
+
msgid "Config group updated."
|
96
|
+
msgstr ""
|
97
|
+
|
98
|
+
msgid "Could not update the config group"
|
99
|
+
msgstr ""
|
100
|
+
|
101
|
+
msgid "Config group has been deleted."
|
102
|
+
msgstr ""
|
103
|
+
|
104
|
+
msgid "Could not delete the config group"
|
105
|
+
msgstr ""
|
106
|
+
|
107
|
+
msgid "Environment created."
|
108
|
+
msgstr "Prostředí vytvořeno."
|
109
|
+
|
110
|
+
msgid "Could not create the environment"
|
111
|
+
msgstr "Prostředí se nedaří vytvořit"
|
112
|
+
|
113
|
+
msgid "Environment updated."
|
114
|
+
msgstr "Prostředí aktualizováno."
|
115
|
+
|
116
|
+
msgid "Could not update the environment"
|
117
|
+
msgstr "Prostředí se nedaří aktualizovat"
|
118
|
+
|
119
|
+
msgid "Environment deleted."
|
120
|
+
msgstr "Prostředí smazáno."
|
121
|
+
|
122
|
+
msgid "Could not delete the environment"
|
123
|
+
msgstr "Prostředí se nedaří smazat"
|
124
|
+
|
125
|
+
msgid "Puppet Environment"
|
126
|
+
msgstr "Puppet prostředí"
|
127
|
+
|
128
|
+
msgid "Puppet CA Proxy"
|
129
|
+
msgstr ""
|
130
|
+
|
131
|
+
msgid "Puppet Master Proxy"
|
132
|
+
msgstr ""
|
133
|
+
|
134
|
+
msgid "Missing options to search %s"
|
135
|
+
msgstr "Chybějící volby pro hledání %s"
|
136
|
+
|
137
|
+
msgid "one of %s not found."
|
138
|
+
msgstr "jedno z %s nenalezeno."
|
139
|
+
|
140
|
+
msgid "Puppet environment name"
|
141
|
+
msgstr ""
|
142
|
+
|
143
|
+
msgid "Puppet class name"
|
144
|
+
msgstr "Název puppet třídy"
|
145
|
+
|
146
|
+
msgid "Smart class parameter name"
|
147
|
+
msgstr ""
|
148
|
+
|
149
|
+
msgid "Name to search by"
|
150
|
+
msgstr "Název podle kterého hledat"
|
151
|
+
|
152
|
+
msgid "Puppetclasses"
|
153
|
+
msgstr ""
|
154
|
+
|
155
|
+
msgid "Environments"
|
156
|
+
msgstr "Prostředí"
|
157
|
+
|
158
|
+
msgid "Parameter"
|
159
|
+
msgstr "Parametr"
|
160
|
+
|
161
|
+
msgid "Default Value"
|
162
|
+
msgstr "Výchozí hodnota"
|
163
|
+
|
164
|
+
msgid "Override"
|
165
|
+
msgstr "Přebít"
|
166
|
+
|
167
|
+
msgid "Puppet class"
|
168
|
+
msgstr "Puppet třída"
|
169
|
+
|
170
|
+
msgid "Class Id"
|
171
|
+
msgstr "Identif. třídy"
|
172
|
+
|
173
|
+
msgid "Description"
|
174
|
+
msgstr "Popis"
|
175
|
+
|
176
|
+
msgid "Type"
|
177
|
+
msgstr "Typ"
|
178
|
+
|
179
|
+
msgid "Hidden Value?"
|
180
|
+
msgstr "Skrytá hodnota?"
|
181
|
+
|
182
|
+
msgid "Omit"
|
183
|
+
msgstr "Vynechat"
|
184
|
+
|
185
|
+
msgid "Required"
|
186
|
+
msgstr "Vyžadováno"
|
187
|
+
|
188
|
+
msgid "Validator"
|
189
|
+
msgstr "Ověřování"
|
190
|
+
|
191
|
+
msgid "Rule"
|
192
|
+
msgstr "Pravidlo"
|
193
|
+
|
194
|
+
msgid "Override values"
|
195
|
+
msgstr "Přebít hodnoty"
|
196
|
+
|
197
|
+
msgid "Merge overrides"
|
198
|
+
msgstr ""
|
199
|
+
|
200
|
+
msgid "Merge default value"
|
201
|
+
msgstr "Sloučit výchozí hodnotu"
|
202
|
+
|
203
|
+
msgid "Avoid duplicates"
|
204
|
+
msgstr "Vyhnout se duplicitám"
|
205
|
+
|
206
|
+
msgid "Order"
|
207
|
+
msgstr "Pořadí"
|
208
|
+
|
209
|
+
msgid "Values"
|
210
|
+
msgstr "Hodnoty"
|
211
|
+
|
212
|
+
msgid "Match"
|
213
|
+
msgstr "Shoda"
|
214
|
+
|
215
|
+
msgid "Value"
|
216
|
+
msgstr "Hodnota"
|
217
|
+
|
218
|
+
msgid "Parameter updated."
|
219
|
+
msgstr "Parametr aktualizován."
|
220
|
+
|
221
|
+
msgid "Could not update the parameter"
|
222
|
+
msgstr "Parametr se nedaří aktualizovat"
|
223
|
+
|
224
|
+
msgid "Value to use when there is no match"
|
225
|
+
msgstr "Hodnoty které použít v případě nenalezení žádné shody"
|
226
|
+
|
227
|
+
msgid "Override this parameter"
|
228
|
+
msgstr "Přebít tento parametr"
|
229
|
+
|
230
|
+
msgid "This parameter is required"
|
231
|
+
msgstr "Tento parametr je potřebný"
|
232
|
+
|
233
|
+
msgid "Type of the parameter"
|
234
|
+
msgstr "Typ parametru"
|
235
|
+
|
236
|
+
msgid "Type of the validator"
|
237
|
+
msgstr "Typ validátoru"
|
238
|
+
|
239
|
+
msgid "The order in which values are resolved"
|
240
|
+
msgstr "Pořadí ve kterém jsou hodnoty řešeny"
|
241
|
+
|
242
|
+
msgid "Override value, required if omit is false"
|
243
|
+
msgstr ""
|
244
|
+
|
245
|
+
msgid "Override value created."
|
246
|
+
msgstr ""
|
247
|
+
|
248
|
+
msgid "Could not create the override value"
|
249
|
+
msgstr ""
|
250
|
+
|
251
|
+
msgid "Cannot use --value when --omit is true."
|
252
|
+
msgstr ""
|
253
|
+
|
254
|
+
msgid "Override value deleted."
|
255
|
+
msgstr ""
|
256
|
+
|
257
|
+
msgid "Could not delete the override value"
|
258
|
+
msgstr ""
|
259
|
+
|
260
|
+
msgid "Import Puppet classes from Puppet proxy"
|
261
|
+
msgstr ""
|
262
|
+
|
263
|
+
msgid "Do not run the import"
|
264
|
+
msgstr "Nespouštět import"
|
265
|
+
|
266
|
+
msgid "Result"
|
267
|
+
msgstr "Výsledek"
|
268
|
+
|
269
|
+
msgid "Changed environments"
|
270
|
+
msgstr "Změněná prostředí"
|
271
|
+
|
272
|
+
msgid "New classes"
|
273
|
+
msgstr ""
|
274
|
+
|
275
|
+
msgid "Updated classes"
|
276
|
+
msgstr ""
|
277
|
+
|
278
|
+
msgid "Removed classes"
|
279
|
+
msgstr ""
|
280
|
+
|
281
|
+
msgid "Ignored classes"
|
282
|
+
msgstr ""
|
Binary file
|