openbolt 5.0.0.rc1
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 +7 -0
- data/Puppetfile +52 -0
- data/bolt-modules/boltlib/lib/puppet/datatypes/applyresult.rb +60 -0
- data/bolt-modules/boltlib/lib/puppet/datatypes/containerresult.rb +51 -0
- data/bolt-modules/boltlib/lib/puppet/datatypes/future.rb +25 -0
- data/bolt-modules/boltlib/lib/puppet/datatypes/resourceinstance.rb +71 -0
- data/bolt-modules/boltlib/lib/puppet/datatypes/result.rb +55 -0
- data/bolt-modules/boltlib/lib/puppet/datatypes/resultset.rb +65 -0
- data/bolt-modules/boltlib/lib/puppet/datatypes/target.rb +93 -0
- data/bolt-modules/boltlib/lib/puppet/functions/add_facts.rb +33 -0
- data/bolt-modules/boltlib/lib/puppet/functions/add_to_group.rb +38 -0
- data/bolt-modules/boltlib/lib/puppet/functions/apply_prep.rb +208 -0
- data/bolt-modules/boltlib/lib/puppet/functions/background.rb +62 -0
- data/bolt-modules/boltlib/lib/puppet/functions/catch_errors.rb +57 -0
- data/bolt-modules/boltlib/lib/puppet/functions/download_file.rb +130 -0
- data/bolt-modules/boltlib/lib/puppet/functions/facts.rb +31 -0
- data/bolt-modules/boltlib/lib/puppet/functions/fail_plan.rb +52 -0
- data/bolt-modules/boltlib/lib/puppet/functions/get_resources.rb +87 -0
- data/bolt-modules/boltlib/lib/puppet/functions/get_target.rb +34 -0
- data/bolt-modules/boltlib/lib/puppet/functions/get_targets.rb +35 -0
- data/bolt-modules/boltlib/lib/puppet/functions/parallelize.rb +74 -0
- data/bolt-modules/boltlib/lib/puppet/functions/puppetdb_command.rb +97 -0
- data/bolt-modules/boltlib/lib/puppet/functions/puppetdb_fact.rb +47 -0
- data/bolt-modules/boltlib/lib/puppet/functions/puppetdb_query.rb +52 -0
- data/bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb +40 -0
- data/bolt-modules/boltlib/lib/puppet/functions/resolve_references.rb +42 -0
- data/bolt-modules/boltlib/lib/puppet/functions/resource.rb +53 -0
- data/bolt-modules/boltlib/lib/puppet/functions/run_command.rb +106 -0
- data/bolt-modules/boltlib/lib/puppet/functions/run_container.rb +162 -0
- data/bolt-modules/boltlib/lib/puppet/functions/run_plan.rb +291 -0
- data/bolt-modules/boltlib/lib/puppet/functions/run_script.rb +145 -0
- data/bolt-modules/boltlib/lib/puppet/functions/run_task.rb +164 -0
- data/bolt-modules/boltlib/lib/puppet/functions/run_task_with.rb +211 -0
- data/bolt-modules/boltlib/lib/puppet/functions/set_config.rb +48 -0
- data/bolt-modules/boltlib/lib/puppet/functions/set_feature.rb +43 -0
- data/bolt-modules/boltlib/lib/puppet/functions/set_resources.rb +145 -0
- data/bolt-modules/boltlib/lib/puppet/functions/set_var.rb +38 -0
- data/bolt-modules/boltlib/lib/puppet/functions/upload_file.rb +101 -0
- data/bolt-modules/boltlib/lib/puppet/functions/vars.rb +29 -0
- data/bolt-modules/boltlib/lib/puppet/functions/wait.rb +131 -0
- data/bolt-modules/boltlib/lib/puppet/functions/wait_until_available.rb +59 -0
- data/bolt-modules/boltlib/lib/puppet/functions/without_default_logging.rb +39 -0
- data/bolt-modules/boltlib/lib/puppet/functions/write_file.rb +50 -0
- data/bolt-modules/boltlib/types/planresult.pp +18 -0
- data/bolt-modules/boltlib/types/targetspec.pp +7 -0
- data/bolt-modules/ctrl/lib/puppet/functions/ctrl/do_until.rb +42 -0
- data/bolt-modules/ctrl/lib/puppet/functions/ctrl/sleep.rb +20 -0
- data/bolt-modules/dir/lib/puppet/functions/dir/children.rb +35 -0
- data/bolt-modules/file/lib/puppet/functions/file/delete.rb +21 -0
- data/bolt-modules/file/lib/puppet/functions/file/exists.rb +28 -0
- data/bolt-modules/file/lib/puppet/functions/file/join.rb +20 -0
- data/bolt-modules/file/lib/puppet/functions/file/read.rb +33 -0
- data/bolt-modules/file/lib/puppet/functions/file/readable.rb +28 -0
- data/bolt-modules/file/lib/puppet/functions/file/write.rb +24 -0
- data/bolt-modules/log/lib/puppet/functions/log/debug.rb +39 -0
- data/bolt-modules/log/lib/puppet/functions/log/error.rb +40 -0
- data/bolt-modules/log/lib/puppet/functions/log/fatal.rb +40 -0
- data/bolt-modules/log/lib/puppet/functions/log/info.rb +39 -0
- data/bolt-modules/log/lib/puppet/functions/log/trace.rb +39 -0
- data/bolt-modules/log/lib/puppet/functions/log/warn.rb +41 -0
- data/bolt-modules/out/lib/puppet/functions/out/message.rb +36 -0
- data/bolt-modules/out/lib/puppet/functions/out/verbose.rb +35 -0
- data/bolt-modules/prompt/lib/puppet/functions/prompt/menu.rb +103 -0
- data/bolt-modules/prompt/lib/puppet/functions/prompt.rb +65 -0
- data/bolt-modules/system/lib/puppet/functions/system/env.rb +20 -0
- data/exe/bolt +17 -0
- data/guides/debugging.yaml +27 -0
- data/guides/inventory.yaml +23 -0
- data/guides/links.yaml +12 -0
- data/guides/logging.yaml +17 -0
- data/guides/module.yaml +18 -0
- data/guides/modulepath.yaml +24 -0
- data/guides/project.yaml +21 -0
- data/guides/targets.yaml +28 -0
- data/guides/transports.yaml +22 -0
- data/lib/bolt/analytics.rb +233 -0
- data/lib/bolt/application.rb +806 -0
- data/lib/bolt/applicator.rb +368 -0
- data/lib/bolt/apply_inventory.rb +93 -0
- data/lib/bolt/apply_result.rb +154 -0
- data/lib/bolt/apply_target.rb +90 -0
- data/lib/bolt/bolt_option_parser.rb +1226 -0
- data/lib/bolt/catalog/logging.rb +15 -0
- data/lib/bolt/catalog.rb +144 -0
- data/lib/bolt/cli.rb +949 -0
- data/lib/bolt/config/modulepath.rb +30 -0
- data/lib/bolt/config/options.rb +673 -0
- data/lib/bolt/config/transport/base.rb +133 -0
- data/lib/bolt/config/transport/docker.rb +34 -0
- data/lib/bolt/config/transport/jail.rb +33 -0
- data/lib/bolt/config/transport/local.rb +39 -0
- data/lib/bolt/config/transport/lxd.rb +34 -0
- data/lib/bolt/config/transport/options.rb +431 -0
- data/lib/bolt/config/transport/orch.rb +41 -0
- data/lib/bolt/config/transport/podman.rb +33 -0
- data/lib/bolt/config/transport/remote.rb +24 -0
- data/lib/bolt/config/transport/ssh.rb +138 -0
- data/lib/bolt/config/transport/winrm.rb +63 -0
- data/lib/bolt/config.rb +515 -0
- data/lib/bolt/container_result.rb +105 -0
- data/lib/bolt/error.rb +194 -0
- data/lib/bolt/executor.rb +539 -0
- data/lib/bolt/fiber_executor.rb +190 -0
- data/lib/bolt/inventory/group.rb +446 -0
- data/lib/bolt/inventory/inventory.rb +391 -0
- data/lib/bolt/inventory/options.rb +139 -0
- data/lib/bolt/inventory/target.rb +293 -0
- data/lib/bolt/inventory.rb +120 -0
- data/lib/bolt/logger.rb +252 -0
- data/lib/bolt/module.rb +54 -0
- data/lib/bolt/module_installer/installer.rb +44 -0
- data/lib/bolt/module_installer/puppetfile/forge_module.rb +54 -0
- data/lib/bolt/module_installer/puppetfile/git_module.rb +37 -0
- data/lib/bolt/module_installer/puppetfile/module.rb +26 -0
- data/lib/bolt/module_installer/puppetfile.rb +131 -0
- data/lib/bolt/module_installer/resolver.rb +129 -0
- data/lib/bolt/module_installer/specs/forge_spec.rb +91 -0
- data/lib/bolt/module_installer/specs/git_spec.rb +150 -0
- data/lib/bolt/module_installer/specs/id/base.rb +116 -0
- data/lib/bolt/module_installer/specs/id/gitclone.rb +120 -0
- data/lib/bolt/module_installer/specs/id/github.rb +90 -0
- data/lib/bolt/module_installer/specs/id/gitlab.rb +92 -0
- data/lib/bolt/module_installer/specs.rb +95 -0
- data/lib/bolt/module_installer.rb +208 -0
- data/lib/bolt/node/errors.rb +55 -0
- data/lib/bolt/node/output.rb +29 -0
- data/lib/bolt/outputter/human.rb +958 -0
- data/lib/bolt/outputter/json.rb +205 -0
- data/lib/bolt/outputter/logger.rb +76 -0
- data/lib/bolt/outputter/rainbow.rb +118 -0
- data/lib/bolt/outputter.rb +57 -0
- data/lib/bolt/pal/issues.rb +19 -0
- data/lib/bolt/pal/logging.rb +17 -0
- data/lib/bolt/pal/yaml_plan/evaluator.rb +83 -0
- data/lib/bolt/pal/yaml_plan/loader.rb +94 -0
- data/lib/bolt/pal/yaml_plan/parameter.rb +63 -0
- data/lib/bolt/pal/yaml_plan/step/command.rb +45 -0
- data/lib/bolt/pal/yaml_plan/step/download.rb +37 -0
- data/lib/bolt/pal/yaml_plan/step/eval.rb +42 -0
- data/lib/bolt/pal/yaml_plan/step/message.rb +31 -0
- data/lib/bolt/pal/yaml_plan/step/plan.rb +42 -0
- data/lib/bolt/pal/yaml_plan/step/resources.rb +170 -0
- data/lib/bolt/pal/yaml_plan/step/script.rb +62 -0
- data/lib/bolt/pal/yaml_plan/step/task.rb +42 -0
- data/lib/bolt/pal/yaml_plan/step/upload.rb +37 -0
- data/lib/bolt/pal/yaml_plan/step/verbose.rb +31 -0
- data/lib/bolt/pal/yaml_plan/step.rb +223 -0
- data/lib/bolt/pal/yaml_plan/transpiler.rb +90 -0
- data/lib/bolt/pal/yaml_plan.rb +172 -0
- data/lib/bolt/pal.rb +847 -0
- data/lib/bolt/plan_creator.rb +219 -0
- data/lib/bolt/plan_future.rb +86 -0
- data/lib/bolt/plan_result.rb +44 -0
- data/lib/bolt/plugin/cache.rb +76 -0
- data/lib/bolt/plugin/env_var.rb +54 -0
- data/lib/bolt/plugin/module.rb +276 -0
- data/lib/bolt/plugin/prompt.rb +36 -0
- data/lib/bolt/plugin/puppet_connect_data.rb +84 -0
- data/lib/bolt/plugin/puppetdb.rb +124 -0
- data/lib/bolt/plugin/task.rb +72 -0
- data/lib/bolt/plugin.rb +380 -0
- data/lib/bolt/project.rb +219 -0
- data/lib/bolt/project_manager/config_migrator.rb +113 -0
- data/lib/bolt/project_manager/inventory_migrator.rb +67 -0
- data/lib/bolt/project_manager/migrator.rb +39 -0
- data/lib/bolt/project_manager/module_migrator.rb +203 -0
- data/lib/bolt/project_manager.rb +221 -0
- data/lib/bolt/puppetdb/client.rb +153 -0
- data/lib/bolt/puppetdb/config.rb +176 -0
- data/lib/bolt/puppetdb/instance.rb +146 -0
- data/lib/bolt/puppetdb.rb +15 -0
- data/lib/bolt/r10k_log_proxy.rb +30 -0
- data/lib/bolt/rerun.rb +55 -0
- data/lib/bolt/resource_instance.rb +133 -0
- data/lib/bolt/result.rb +247 -0
- data/lib/bolt/result_set.rb +128 -0
- data/lib/bolt/shell/bash/tmpdir.rb +62 -0
- data/lib/bolt/shell/bash.rb +516 -0
- data/lib/bolt/shell/powershell/snippets.rb +181 -0
- data/lib/bolt/shell/powershell.rb +365 -0
- data/lib/bolt/shell.rb +105 -0
- data/lib/bolt/target.rb +174 -0
- data/lib/bolt/task/puppet_server.rb +27 -0
- data/lib/bolt/task/run.rb +55 -0
- data/lib/bolt/task.rb +163 -0
- data/lib/bolt/transport/base.rb +252 -0
- data/lib/bolt/transport/docker/connection.rb +150 -0
- data/lib/bolt/transport/docker.rb +23 -0
- data/lib/bolt/transport/jail/connection.rb +81 -0
- data/lib/bolt/transport/jail.rb +21 -0
- data/lib/bolt/transport/local/connection.rb +106 -0
- data/lib/bolt/transport/local.rb +20 -0
- data/lib/bolt/transport/lxd/connection.rb +115 -0
- data/lib/bolt/transport/lxd.rb +26 -0
- data/lib/bolt/transport/orch/connection.rb +111 -0
- data/lib/bolt/transport/orch.rb +271 -0
- data/lib/bolt/transport/podman/connection.rb +102 -0
- data/lib/bolt/transport/podman.rb +19 -0
- data/lib/bolt/transport/remote.rb +41 -0
- data/lib/bolt/transport/simple.rb +54 -0
- data/lib/bolt/transport/ssh/connection.rb +321 -0
- data/lib/bolt/transport/ssh/exec_connection.rb +140 -0
- data/lib/bolt/transport/ssh.rb +48 -0
- data/lib/bolt/transport/winrm/connection.rb +378 -0
- data/lib/bolt/transport/winrm.rb +33 -0
- data/lib/bolt/util/format.rb +68 -0
- data/lib/bolt/util/puppet_log_level.rb +21 -0
- data/lib/bolt/util.rb +465 -0
- data/lib/bolt/validator.rb +227 -0
- data/lib/bolt/version.rb +5 -0
- data/lib/bolt.rb +8 -0
- data/lib/bolt_server/acl.rb +39 -0
- data/lib/bolt_server/base_config.rb +112 -0
- data/lib/bolt_server/config.rb +64 -0
- data/lib/bolt_server/file_cache.rb +200 -0
- data/lib/bolt_server/request_error.rb +11 -0
- data/lib/bolt_server/schemas/action-check_node_connections.json +14 -0
- data/lib/bolt_server/schemas/action-run_command.json +12 -0
- data/lib/bolt_server/schemas/action-run_script.json +47 -0
- data/lib/bolt_server/schemas/action-run_task.json +20 -0
- data/lib/bolt_server/schemas/action-upload_file.json +47 -0
- data/lib/bolt_server/schemas/partials/target-any.json +10 -0
- data/lib/bolt_server/schemas/partials/target-ssh.json +88 -0
- data/lib/bolt_server/schemas/partials/target-winrm.json +67 -0
- data/lib/bolt_server/schemas/partials/task.json +94 -0
- data/lib/bolt_server/schemas/transport-ssh.json +25 -0
- data/lib/bolt_server/schemas/transport-winrm.json +19 -0
- data/lib/bolt_server/transport_app.rb +554 -0
- data/lib/bolt_spec/bolt_context.rb +226 -0
- data/lib/bolt_spec/plans/action_stubs/command_stub.rb +51 -0
- data/lib/bolt_spec/plans/action_stubs/download_stub.rb +66 -0
- data/lib/bolt_spec/plans/action_stubs/plan_stub.rb +55 -0
- data/lib/bolt_spec/plans/action_stubs/script_stub.rb +59 -0
- data/lib/bolt_spec/plans/action_stubs/task_stub.rb +57 -0
- data/lib/bolt_spec/plans/action_stubs/upload_stub.rb +65 -0
- data/lib/bolt_spec/plans/action_stubs.rb +196 -0
- data/lib/bolt_spec/plans/mock_executor.rb +361 -0
- data/lib/bolt_spec/plans/publish_stub.rb +49 -0
- data/lib/bolt_spec/plans.rb +190 -0
- data/lib/bolt_spec/run.rb +246 -0
- data/lib/logging_extensions/logging.rb +13 -0
- data/libexec/apply_catalog.rb +130 -0
- data/libexec/bolt_catalog +68 -0
- data/libexec/custom_facts.rb +63 -0
- data/libexec/query_resources.rb +75 -0
- data/modules/aggregate/lib/puppet/functions/aggregate/count.rb +21 -0
- data/modules/aggregate/lib/puppet/functions/aggregate/nodes.rb +22 -0
- data/modules/aggregate/lib/puppet/functions/aggregate/targets.rb +21 -0
- data/modules/aggregate/plans/count.pp +56 -0
- data/modules/aggregate/plans/targets.pp +56 -0
- data/modules/canary/lib/puppet/functions/canary/merge.rb +13 -0
- data/modules/canary/lib/puppet/functions/canary/random_split.rb +22 -0
- data/modules/canary/lib/puppet/functions/canary/skip.rb +25 -0
- data/modules/canary/plans/init.pp +100 -0
- data/modules/puppet_connect/plans/test_input_data.pp +94 -0
- data/modules/puppetdb_fact/plans/init.pp +20 -0
- data/resources/bolt_bash_completion.sh +214 -0
- metadata +735 -0
metadata
ADDED
@@ -0,0 +1,735 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: openbolt
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 5.0.0.rc1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- OpenVox Project
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: addressable
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '2.5'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '2.5'
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: aws-sdk-ec2
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '1'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1'
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: CFPropertyList
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '2.2'
|
47
|
+
type: :runtime
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '2.2'
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: concurrent-ruby
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.0'
|
61
|
+
type: :runtime
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '1.0'
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: ffi
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 1.9.25
|
75
|
+
- - "<"
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 2.0.0
|
78
|
+
type: :runtime
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: 1.9.25
|
85
|
+
- - "<"
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: 2.0.0
|
88
|
+
- !ruby/object:Gem::Dependency
|
89
|
+
name: hiera-eyaml
|
90
|
+
requirement: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - "~>"
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '3'
|
95
|
+
type: :runtime
|
96
|
+
prerelease: false
|
97
|
+
version_requirements: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - "~>"
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '3'
|
102
|
+
- !ruby/object:Gem::Dependency
|
103
|
+
name: jwt
|
104
|
+
requirement: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - "~>"
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '2.2'
|
109
|
+
type: :runtime
|
110
|
+
prerelease: false
|
111
|
+
version_requirements: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - "~>"
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '2.2'
|
116
|
+
- !ruby/object:Gem::Dependency
|
117
|
+
name: logging
|
118
|
+
requirement: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - "~>"
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '2.2'
|
123
|
+
type: :runtime
|
124
|
+
prerelease: false
|
125
|
+
version_requirements: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - "~>"
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '2.2'
|
130
|
+
- !ruby/object:Gem::Dependency
|
131
|
+
name: minitar
|
132
|
+
requirement: !ruby/object:Gem::Requirement
|
133
|
+
requirements:
|
134
|
+
- - "~>"
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '0.6'
|
137
|
+
type: :runtime
|
138
|
+
prerelease: false
|
139
|
+
version_requirements: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - "~>"
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '0.6'
|
144
|
+
- !ruby/object:Gem::Dependency
|
145
|
+
name: net-scp
|
146
|
+
requirement: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - ">="
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '1.2'
|
151
|
+
- - "<"
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '5.0'
|
154
|
+
type: :runtime
|
155
|
+
prerelease: false
|
156
|
+
version_requirements: !ruby/object:Gem::Requirement
|
157
|
+
requirements:
|
158
|
+
- - ">="
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: '1.2'
|
161
|
+
- - "<"
|
162
|
+
- !ruby/object:Gem::Version
|
163
|
+
version: '5.0'
|
164
|
+
- !ruby/object:Gem::Dependency
|
165
|
+
name: net-ssh
|
166
|
+
requirement: !ruby/object:Gem::Requirement
|
167
|
+
requirements:
|
168
|
+
- - ">="
|
169
|
+
- !ruby/object:Gem::Version
|
170
|
+
version: '4.0'
|
171
|
+
- - "<"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '8.0'
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '4.0'
|
181
|
+
- - "<"
|
182
|
+
- !ruby/object:Gem::Version
|
183
|
+
version: '8.0'
|
184
|
+
- !ruby/object:Gem::Dependency
|
185
|
+
name: net-ssh-krb
|
186
|
+
requirement: !ruby/object:Gem::Requirement
|
187
|
+
requirements:
|
188
|
+
- - "~>"
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: '0.5'
|
191
|
+
type: :runtime
|
192
|
+
prerelease: false
|
193
|
+
version_requirements: !ruby/object:Gem::Requirement
|
194
|
+
requirements:
|
195
|
+
- - "~>"
|
196
|
+
- !ruby/object:Gem::Version
|
197
|
+
version: '0.5'
|
198
|
+
- !ruby/object:Gem::Dependency
|
199
|
+
name: orchestrator_client
|
200
|
+
requirement: !ruby/object:Gem::Requirement
|
201
|
+
requirements:
|
202
|
+
- - "~>"
|
203
|
+
- !ruby/object:Gem::Version
|
204
|
+
version: '0.7'
|
205
|
+
type: :runtime
|
206
|
+
prerelease: false
|
207
|
+
version_requirements: !ruby/object:Gem::Requirement
|
208
|
+
requirements:
|
209
|
+
- - "~>"
|
210
|
+
- !ruby/object:Gem::Version
|
211
|
+
version: '0.7'
|
212
|
+
- !ruby/object:Gem::Dependency
|
213
|
+
name: puppet
|
214
|
+
requirement: !ruby/object:Gem::Requirement
|
215
|
+
requirements:
|
216
|
+
- - ">="
|
217
|
+
- !ruby/object:Gem::Version
|
218
|
+
version: 6.18.0
|
219
|
+
type: :runtime
|
220
|
+
prerelease: false
|
221
|
+
version_requirements: !ruby/object:Gem::Requirement
|
222
|
+
requirements:
|
223
|
+
- - ">="
|
224
|
+
- !ruby/object:Gem::Version
|
225
|
+
version: 6.18.0
|
226
|
+
- !ruby/object:Gem::Dependency
|
227
|
+
name: puppetfile-resolver
|
228
|
+
requirement: !ruby/object:Gem::Requirement
|
229
|
+
requirements:
|
230
|
+
- - ">="
|
231
|
+
- !ruby/object:Gem::Version
|
232
|
+
version: 0.6.2
|
233
|
+
- - "<"
|
234
|
+
- !ruby/object:Gem::Version
|
235
|
+
version: '1.0'
|
236
|
+
type: :runtime
|
237
|
+
prerelease: false
|
238
|
+
version_requirements: !ruby/object:Gem::Requirement
|
239
|
+
requirements:
|
240
|
+
- - ">="
|
241
|
+
- !ruby/object:Gem::Version
|
242
|
+
version: 0.6.2
|
243
|
+
- - "<"
|
244
|
+
- !ruby/object:Gem::Version
|
245
|
+
version: '1.0'
|
246
|
+
- !ruby/object:Gem::Dependency
|
247
|
+
name: puppet-resource_api
|
248
|
+
requirement: !ruby/object:Gem::Requirement
|
249
|
+
requirements:
|
250
|
+
- - ">="
|
251
|
+
- !ruby/object:Gem::Version
|
252
|
+
version: 1.8.1
|
253
|
+
type: :runtime
|
254
|
+
prerelease: false
|
255
|
+
version_requirements: !ruby/object:Gem::Requirement
|
256
|
+
requirements:
|
257
|
+
- - ">="
|
258
|
+
- !ruby/object:Gem::Version
|
259
|
+
version: 1.8.1
|
260
|
+
- !ruby/object:Gem::Dependency
|
261
|
+
name: puppet-strings
|
262
|
+
requirement: !ruby/object:Gem::Requirement
|
263
|
+
requirements:
|
264
|
+
- - ">="
|
265
|
+
- !ruby/object:Gem::Version
|
266
|
+
version: 2.3.0
|
267
|
+
- - "<"
|
268
|
+
- !ruby/object:Gem::Version
|
269
|
+
version: '5.0'
|
270
|
+
type: :runtime
|
271
|
+
prerelease: false
|
272
|
+
version_requirements: !ruby/object:Gem::Requirement
|
273
|
+
requirements:
|
274
|
+
- - ">="
|
275
|
+
- !ruby/object:Gem::Version
|
276
|
+
version: 2.3.0
|
277
|
+
- - "<"
|
278
|
+
- !ruby/object:Gem::Version
|
279
|
+
version: '5.0'
|
280
|
+
- !ruby/object:Gem::Dependency
|
281
|
+
name: r10k
|
282
|
+
requirement: !ruby/object:Gem::Requirement
|
283
|
+
requirements:
|
284
|
+
- - ">="
|
285
|
+
- !ruby/object:Gem::Version
|
286
|
+
version: '3.10'
|
287
|
+
- - "<"
|
288
|
+
- !ruby/object:Gem::Version
|
289
|
+
version: '5'
|
290
|
+
type: :runtime
|
291
|
+
prerelease: false
|
292
|
+
version_requirements: !ruby/object:Gem::Requirement
|
293
|
+
requirements:
|
294
|
+
- - ">="
|
295
|
+
- !ruby/object:Gem::Version
|
296
|
+
version: '3.10'
|
297
|
+
- - "<"
|
298
|
+
- !ruby/object:Gem::Version
|
299
|
+
version: '5'
|
300
|
+
- !ruby/object:Gem::Dependency
|
301
|
+
name: ruby_smb
|
302
|
+
requirement: !ruby/object:Gem::Requirement
|
303
|
+
requirements:
|
304
|
+
- - "~>"
|
305
|
+
- !ruby/object:Gem::Version
|
306
|
+
version: '1.0'
|
307
|
+
type: :runtime
|
308
|
+
prerelease: false
|
309
|
+
version_requirements: !ruby/object:Gem::Requirement
|
310
|
+
requirements:
|
311
|
+
- - "~>"
|
312
|
+
- !ruby/object:Gem::Version
|
313
|
+
version: '1.0'
|
314
|
+
- !ruby/object:Gem::Dependency
|
315
|
+
name: terminal-table
|
316
|
+
requirement: !ruby/object:Gem::Requirement
|
317
|
+
requirements:
|
318
|
+
- - "~>"
|
319
|
+
- !ruby/object:Gem::Version
|
320
|
+
version: '3.0'
|
321
|
+
type: :runtime
|
322
|
+
prerelease: false
|
323
|
+
version_requirements: !ruby/object:Gem::Requirement
|
324
|
+
requirements:
|
325
|
+
- - "~>"
|
326
|
+
- !ruby/object:Gem::Version
|
327
|
+
version: '3.0'
|
328
|
+
- !ruby/object:Gem::Dependency
|
329
|
+
name: winrm
|
330
|
+
requirement: !ruby/object:Gem::Requirement
|
331
|
+
requirements:
|
332
|
+
- - "~>"
|
333
|
+
- !ruby/object:Gem::Version
|
334
|
+
version: '2.0'
|
335
|
+
type: :runtime
|
336
|
+
prerelease: false
|
337
|
+
version_requirements: !ruby/object:Gem::Requirement
|
338
|
+
requirements:
|
339
|
+
- - "~>"
|
340
|
+
- !ruby/object:Gem::Version
|
341
|
+
version: '2.0'
|
342
|
+
- !ruby/object:Gem::Dependency
|
343
|
+
name: winrm-fs
|
344
|
+
requirement: !ruby/object:Gem::Requirement
|
345
|
+
requirements:
|
346
|
+
- - "~>"
|
347
|
+
- !ruby/object:Gem::Version
|
348
|
+
version: '1.3'
|
349
|
+
type: :runtime
|
350
|
+
prerelease: false
|
351
|
+
version_requirements: !ruby/object:Gem::Requirement
|
352
|
+
requirements:
|
353
|
+
- - "~>"
|
354
|
+
- !ruby/object:Gem::Version
|
355
|
+
version: '1.3'
|
356
|
+
- !ruby/object:Gem::Dependency
|
357
|
+
name: bundler
|
358
|
+
requirement: !ruby/object:Gem::Requirement
|
359
|
+
requirements:
|
360
|
+
- - ">="
|
361
|
+
- !ruby/object:Gem::Version
|
362
|
+
version: '1.14'
|
363
|
+
type: :development
|
364
|
+
prerelease: false
|
365
|
+
version_requirements: !ruby/object:Gem::Requirement
|
366
|
+
requirements:
|
367
|
+
- - ">="
|
368
|
+
- !ruby/object:Gem::Version
|
369
|
+
version: '1.14'
|
370
|
+
- !ruby/object:Gem::Dependency
|
371
|
+
name: octokit
|
372
|
+
requirement: !ruby/object:Gem::Requirement
|
373
|
+
requirements:
|
374
|
+
- - ">="
|
375
|
+
- !ruby/object:Gem::Version
|
376
|
+
version: '4.0'
|
377
|
+
- - "<"
|
378
|
+
- !ruby/object:Gem::Version
|
379
|
+
version: '9'
|
380
|
+
type: :development
|
381
|
+
prerelease: false
|
382
|
+
version_requirements: !ruby/object:Gem::Requirement
|
383
|
+
requirements:
|
384
|
+
- - ">="
|
385
|
+
- !ruby/object:Gem::Version
|
386
|
+
version: '4.0'
|
387
|
+
- - "<"
|
388
|
+
- !ruby/object:Gem::Version
|
389
|
+
version: '9'
|
390
|
+
- !ruby/object:Gem::Dependency
|
391
|
+
name: puppetlabs_spec_helper
|
392
|
+
requirement: !ruby/object:Gem::Requirement
|
393
|
+
requirements:
|
394
|
+
- - ">="
|
395
|
+
- !ruby/object:Gem::Version
|
396
|
+
version: '5.0'
|
397
|
+
- - "<"
|
398
|
+
- !ruby/object:Gem::Version
|
399
|
+
version: '8'
|
400
|
+
type: :development
|
401
|
+
prerelease: false
|
402
|
+
version_requirements: !ruby/object:Gem::Requirement
|
403
|
+
requirements:
|
404
|
+
- - ">="
|
405
|
+
- !ruby/object:Gem::Version
|
406
|
+
version: '5.0'
|
407
|
+
- - "<"
|
408
|
+
- !ruby/object:Gem::Version
|
409
|
+
version: '8'
|
410
|
+
- !ruby/object:Gem::Dependency
|
411
|
+
name: rake
|
412
|
+
requirement: !ruby/object:Gem::Requirement
|
413
|
+
requirements:
|
414
|
+
- - ">="
|
415
|
+
- !ruby/object:Gem::Version
|
416
|
+
version: '12.0'
|
417
|
+
- - "<"
|
418
|
+
- !ruby/object:Gem::Version
|
419
|
+
version: '14'
|
420
|
+
type: :development
|
421
|
+
prerelease: false
|
422
|
+
version_requirements: !ruby/object:Gem::Requirement
|
423
|
+
requirements:
|
424
|
+
- - ">="
|
425
|
+
- !ruby/object:Gem::Version
|
426
|
+
version: '12.0'
|
427
|
+
- - "<"
|
428
|
+
- !ruby/object:Gem::Version
|
429
|
+
version: '14'
|
430
|
+
- !ruby/object:Gem::Dependency
|
431
|
+
name: rspec
|
432
|
+
requirement: !ruby/object:Gem::Requirement
|
433
|
+
requirements:
|
434
|
+
- - ">="
|
435
|
+
- !ruby/object:Gem::Version
|
436
|
+
version: '3.0'
|
437
|
+
- - "<"
|
438
|
+
- !ruby/object:Gem::Version
|
439
|
+
version: '4'
|
440
|
+
type: :development
|
441
|
+
prerelease: false
|
442
|
+
version_requirements: !ruby/object:Gem::Requirement
|
443
|
+
requirements:
|
444
|
+
- - ">="
|
445
|
+
- !ruby/object:Gem::Version
|
446
|
+
version: '3.0'
|
447
|
+
- - "<"
|
448
|
+
- !ruby/object:Gem::Version
|
449
|
+
version: '4'
|
450
|
+
description: Execute commands remotely over SSH and WinRM
|
451
|
+
email:
|
452
|
+
- openvox@voxpupuli.org
|
453
|
+
executables:
|
454
|
+
- bolt
|
455
|
+
extensions: []
|
456
|
+
extra_rdoc_files: []
|
457
|
+
files:
|
458
|
+
- Puppetfile
|
459
|
+
- bolt-modules/boltlib/lib/puppet/datatypes/applyresult.rb
|
460
|
+
- bolt-modules/boltlib/lib/puppet/datatypes/containerresult.rb
|
461
|
+
- bolt-modules/boltlib/lib/puppet/datatypes/future.rb
|
462
|
+
- bolt-modules/boltlib/lib/puppet/datatypes/resourceinstance.rb
|
463
|
+
- bolt-modules/boltlib/lib/puppet/datatypes/result.rb
|
464
|
+
- bolt-modules/boltlib/lib/puppet/datatypes/resultset.rb
|
465
|
+
- bolt-modules/boltlib/lib/puppet/datatypes/target.rb
|
466
|
+
- bolt-modules/boltlib/lib/puppet/functions/add_facts.rb
|
467
|
+
- bolt-modules/boltlib/lib/puppet/functions/add_to_group.rb
|
468
|
+
- bolt-modules/boltlib/lib/puppet/functions/apply_prep.rb
|
469
|
+
- bolt-modules/boltlib/lib/puppet/functions/background.rb
|
470
|
+
- bolt-modules/boltlib/lib/puppet/functions/catch_errors.rb
|
471
|
+
- bolt-modules/boltlib/lib/puppet/functions/download_file.rb
|
472
|
+
- bolt-modules/boltlib/lib/puppet/functions/facts.rb
|
473
|
+
- bolt-modules/boltlib/lib/puppet/functions/fail_plan.rb
|
474
|
+
- bolt-modules/boltlib/lib/puppet/functions/get_resources.rb
|
475
|
+
- bolt-modules/boltlib/lib/puppet/functions/get_target.rb
|
476
|
+
- bolt-modules/boltlib/lib/puppet/functions/get_targets.rb
|
477
|
+
- bolt-modules/boltlib/lib/puppet/functions/parallelize.rb
|
478
|
+
- bolt-modules/boltlib/lib/puppet/functions/puppetdb_command.rb
|
479
|
+
- bolt-modules/boltlib/lib/puppet/functions/puppetdb_fact.rb
|
480
|
+
- bolt-modules/boltlib/lib/puppet/functions/puppetdb_query.rb
|
481
|
+
- bolt-modules/boltlib/lib/puppet/functions/remove_from_group.rb
|
482
|
+
- bolt-modules/boltlib/lib/puppet/functions/resolve_references.rb
|
483
|
+
- bolt-modules/boltlib/lib/puppet/functions/resource.rb
|
484
|
+
- bolt-modules/boltlib/lib/puppet/functions/run_command.rb
|
485
|
+
- bolt-modules/boltlib/lib/puppet/functions/run_container.rb
|
486
|
+
- bolt-modules/boltlib/lib/puppet/functions/run_plan.rb
|
487
|
+
- bolt-modules/boltlib/lib/puppet/functions/run_script.rb
|
488
|
+
- bolt-modules/boltlib/lib/puppet/functions/run_task.rb
|
489
|
+
- bolt-modules/boltlib/lib/puppet/functions/run_task_with.rb
|
490
|
+
- bolt-modules/boltlib/lib/puppet/functions/set_config.rb
|
491
|
+
- bolt-modules/boltlib/lib/puppet/functions/set_feature.rb
|
492
|
+
- bolt-modules/boltlib/lib/puppet/functions/set_resources.rb
|
493
|
+
- bolt-modules/boltlib/lib/puppet/functions/set_var.rb
|
494
|
+
- bolt-modules/boltlib/lib/puppet/functions/upload_file.rb
|
495
|
+
- bolt-modules/boltlib/lib/puppet/functions/vars.rb
|
496
|
+
- bolt-modules/boltlib/lib/puppet/functions/wait.rb
|
497
|
+
- bolt-modules/boltlib/lib/puppet/functions/wait_until_available.rb
|
498
|
+
- bolt-modules/boltlib/lib/puppet/functions/without_default_logging.rb
|
499
|
+
- bolt-modules/boltlib/lib/puppet/functions/write_file.rb
|
500
|
+
- bolt-modules/boltlib/types/planresult.pp
|
501
|
+
- bolt-modules/boltlib/types/targetspec.pp
|
502
|
+
- bolt-modules/ctrl/lib/puppet/functions/ctrl/do_until.rb
|
503
|
+
- bolt-modules/ctrl/lib/puppet/functions/ctrl/sleep.rb
|
504
|
+
- bolt-modules/dir/lib/puppet/functions/dir/children.rb
|
505
|
+
- bolt-modules/file/lib/puppet/functions/file/delete.rb
|
506
|
+
- bolt-modules/file/lib/puppet/functions/file/exists.rb
|
507
|
+
- bolt-modules/file/lib/puppet/functions/file/join.rb
|
508
|
+
- bolt-modules/file/lib/puppet/functions/file/read.rb
|
509
|
+
- bolt-modules/file/lib/puppet/functions/file/readable.rb
|
510
|
+
- bolt-modules/file/lib/puppet/functions/file/write.rb
|
511
|
+
- bolt-modules/log/lib/puppet/functions/log/debug.rb
|
512
|
+
- bolt-modules/log/lib/puppet/functions/log/error.rb
|
513
|
+
- bolt-modules/log/lib/puppet/functions/log/fatal.rb
|
514
|
+
- bolt-modules/log/lib/puppet/functions/log/info.rb
|
515
|
+
- bolt-modules/log/lib/puppet/functions/log/trace.rb
|
516
|
+
- bolt-modules/log/lib/puppet/functions/log/warn.rb
|
517
|
+
- bolt-modules/out/lib/puppet/functions/out/message.rb
|
518
|
+
- bolt-modules/out/lib/puppet/functions/out/verbose.rb
|
519
|
+
- bolt-modules/prompt/lib/puppet/functions/prompt.rb
|
520
|
+
- bolt-modules/prompt/lib/puppet/functions/prompt/menu.rb
|
521
|
+
- bolt-modules/system/lib/puppet/functions/system/env.rb
|
522
|
+
- exe/bolt
|
523
|
+
- guides/debugging.yaml
|
524
|
+
- guides/inventory.yaml
|
525
|
+
- guides/links.yaml
|
526
|
+
- guides/logging.yaml
|
527
|
+
- guides/module.yaml
|
528
|
+
- guides/modulepath.yaml
|
529
|
+
- guides/project.yaml
|
530
|
+
- guides/targets.yaml
|
531
|
+
- guides/transports.yaml
|
532
|
+
- lib/bolt.rb
|
533
|
+
- lib/bolt/analytics.rb
|
534
|
+
- lib/bolt/application.rb
|
535
|
+
- lib/bolt/applicator.rb
|
536
|
+
- lib/bolt/apply_inventory.rb
|
537
|
+
- lib/bolt/apply_result.rb
|
538
|
+
- lib/bolt/apply_target.rb
|
539
|
+
- lib/bolt/bolt_option_parser.rb
|
540
|
+
- lib/bolt/catalog.rb
|
541
|
+
- lib/bolt/catalog/logging.rb
|
542
|
+
- lib/bolt/cli.rb
|
543
|
+
- lib/bolt/config.rb
|
544
|
+
- lib/bolt/config/modulepath.rb
|
545
|
+
- lib/bolt/config/options.rb
|
546
|
+
- lib/bolt/config/transport/base.rb
|
547
|
+
- lib/bolt/config/transport/docker.rb
|
548
|
+
- lib/bolt/config/transport/jail.rb
|
549
|
+
- lib/bolt/config/transport/local.rb
|
550
|
+
- lib/bolt/config/transport/lxd.rb
|
551
|
+
- lib/bolt/config/transport/options.rb
|
552
|
+
- lib/bolt/config/transport/orch.rb
|
553
|
+
- lib/bolt/config/transport/podman.rb
|
554
|
+
- lib/bolt/config/transport/remote.rb
|
555
|
+
- lib/bolt/config/transport/ssh.rb
|
556
|
+
- lib/bolt/config/transport/winrm.rb
|
557
|
+
- lib/bolt/container_result.rb
|
558
|
+
- lib/bolt/error.rb
|
559
|
+
- lib/bolt/executor.rb
|
560
|
+
- lib/bolt/fiber_executor.rb
|
561
|
+
- lib/bolt/inventory.rb
|
562
|
+
- lib/bolt/inventory/group.rb
|
563
|
+
- lib/bolt/inventory/inventory.rb
|
564
|
+
- lib/bolt/inventory/options.rb
|
565
|
+
- lib/bolt/inventory/target.rb
|
566
|
+
- lib/bolt/logger.rb
|
567
|
+
- lib/bolt/module.rb
|
568
|
+
- lib/bolt/module_installer.rb
|
569
|
+
- lib/bolt/module_installer/installer.rb
|
570
|
+
- lib/bolt/module_installer/puppetfile.rb
|
571
|
+
- lib/bolt/module_installer/puppetfile/forge_module.rb
|
572
|
+
- lib/bolt/module_installer/puppetfile/git_module.rb
|
573
|
+
- lib/bolt/module_installer/puppetfile/module.rb
|
574
|
+
- lib/bolt/module_installer/resolver.rb
|
575
|
+
- lib/bolt/module_installer/specs.rb
|
576
|
+
- lib/bolt/module_installer/specs/forge_spec.rb
|
577
|
+
- lib/bolt/module_installer/specs/git_spec.rb
|
578
|
+
- lib/bolt/module_installer/specs/id/base.rb
|
579
|
+
- lib/bolt/module_installer/specs/id/gitclone.rb
|
580
|
+
- lib/bolt/module_installer/specs/id/github.rb
|
581
|
+
- lib/bolt/module_installer/specs/id/gitlab.rb
|
582
|
+
- lib/bolt/node/errors.rb
|
583
|
+
- lib/bolt/node/output.rb
|
584
|
+
- lib/bolt/outputter.rb
|
585
|
+
- lib/bolt/outputter/human.rb
|
586
|
+
- lib/bolt/outputter/json.rb
|
587
|
+
- lib/bolt/outputter/logger.rb
|
588
|
+
- lib/bolt/outputter/rainbow.rb
|
589
|
+
- lib/bolt/pal.rb
|
590
|
+
- lib/bolt/pal/issues.rb
|
591
|
+
- lib/bolt/pal/logging.rb
|
592
|
+
- lib/bolt/pal/yaml_plan.rb
|
593
|
+
- lib/bolt/pal/yaml_plan/evaluator.rb
|
594
|
+
- lib/bolt/pal/yaml_plan/loader.rb
|
595
|
+
- lib/bolt/pal/yaml_plan/parameter.rb
|
596
|
+
- lib/bolt/pal/yaml_plan/step.rb
|
597
|
+
- lib/bolt/pal/yaml_plan/step/command.rb
|
598
|
+
- lib/bolt/pal/yaml_plan/step/download.rb
|
599
|
+
- lib/bolt/pal/yaml_plan/step/eval.rb
|
600
|
+
- lib/bolt/pal/yaml_plan/step/message.rb
|
601
|
+
- lib/bolt/pal/yaml_plan/step/plan.rb
|
602
|
+
- lib/bolt/pal/yaml_plan/step/resources.rb
|
603
|
+
- lib/bolt/pal/yaml_plan/step/script.rb
|
604
|
+
- lib/bolt/pal/yaml_plan/step/task.rb
|
605
|
+
- lib/bolt/pal/yaml_plan/step/upload.rb
|
606
|
+
- lib/bolt/pal/yaml_plan/step/verbose.rb
|
607
|
+
- lib/bolt/pal/yaml_plan/transpiler.rb
|
608
|
+
- lib/bolt/plan_creator.rb
|
609
|
+
- lib/bolt/plan_future.rb
|
610
|
+
- lib/bolt/plan_result.rb
|
611
|
+
- lib/bolt/plugin.rb
|
612
|
+
- lib/bolt/plugin/cache.rb
|
613
|
+
- lib/bolt/plugin/env_var.rb
|
614
|
+
- lib/bolt/plugin/module.rb
|
615
|
+
- lib/bolt/plugin/prompt.rb
|
616
|
+
- lib/bolt/plugin/puppet_connect_data.rb
|
617
|
+
- lib/bolt/plugin/puppetdb.rb
|
618
|
+
- lib/bolt/plugin/task.rb
|
619
|
+
- lib/bolt/project.rb
|
620
|
+
- lib/bolt/project_manager.rb
|
621
|
+
- lib/bolt/project_manager/config_migrator.rb
|
622
|
+
- lib/bolt/project_manager/inventory_migrator.rb
|
623
|
+
- lib/bolt/project_manager/migrator.rb
|
624
|
+
- lib/bolt/project_manager/module_migrator.rb
|
625
|
+
- lib/bolt/puppetdb.rb
|
626
|
+
- lib/bolt/puppetdb/client.rb
|
627
|
+
- lib/bolt/puppetdb/config.rb
|
628
|
+
- lib/bolt/puppetdb/instance.rb
|
629
|
+
- lib/bolt/r10k_log_proxy.rb
|
630
|
+
- lib/bolt/rerun.rb
|
631
|
+
- lib/bolt/resource_instance.rb
|
632
|
+
- lib/bolt/result.rb
|
633
|
+
- lib/bolt/result_set.rb
|
634
|
+
- lib/bolt/shell.rb
|
635
|
+
- lib/bolt/shell/bash.rb
|
636
|
+
- lib/bolt/shell/bash/tmpdir.rb
|
637
|
+
- lib/bolt/shell/powershell.rb
|
638
|
+
- lib/bolt/shell/powershell/snippets.rb
|
639
|
+
- lib/bolt/target.rb
|
640
|
+
- lib/bolt/task.rb
|
641
|
+
- lib/bolt/task/puppet_server.rb
|
642
|
+
- lib/bolt/task/run.rb
|
643
|
+
- lib/bolt/transport/base.rb
|
644
|
+
- lib/bolt/transport/docker.rb
|
645
|
+
- lib/bolt/transport/docker/connection.rb
|
646
|
+
- lib/bolt/transport/jail.rb
|
647
|
+
- lib/bolt/transport/jail/connection.rb
|
648
|
+
- lib/bolt/transport/local.rb
|
649
|
+
- lib/bolt/transport/local/connection.rb
|
650
|
+
- lib/bolt/transport/lxd.rb
|
651
|
+
- lib/bolt/transport/lxd/connection.rb
|
652
|
+
- lib/bolt/transport/orch.rb
|
653
|
+
- lib/bolt/transport/orch/connection.rb
|
654
|
+
- lib/bolt/transport/podman.rb
|
655
|
+
- lib/bolt/transport/podman/connection.rb
|
656
|
+
- lib/bolt/transport/remote.rb
|
657
|
+
- lib/bolt/transport/simple.rb
|
658
|
+
- lib/bolt/transport/ssh.rb
|
659
|
+
- lib/bolt/transport/ssh/connection.rb
|
660
|
+
- lib/bolt/transport/ssh/exec_connection.rb
|
661
|
+
- lib/bolt/transport/winrm.rb
|
662
|
+
- lib/bolt/transport/winrm/connection.rb
|
663
|
+
- lib/bolt/util.rb
|
664
|
+
- lib/bolt/util/format.rb
|
665
|
+
- lib/bolt/util/puppet_log_level.rb
|
666
|
+
- lib/bolt/validator.rb
|
667
|
+
- lib/bolt/version.rb
|
668
|
+
- lib/bolt_server/acl.rb
|
669
|
+
- lib/bolt_server/base_config.rb
|
670
|
+
- lib/bolt_server/config.rb
|
671
|
+
- lib/bolt_server/file_cache.rb
|
672
|
+
- lib/bolt_server/request_error.rb
|
673
|
+
- lib/bolt_server/schemas/action-check_node_connections.json
|
674
|
+
- lib/bolt_server/schemas/action-run_command.json
|
675
|
+
- lib/bolt_server/schemas/action-run_script.json
|
676
|
+
- lib/bolt_server/schemas/action-run_task.json
|
677
|
+
- lib/bolt_server/schemas/action-upload_file.json
|
678
|
+
- lib/bolt_server/schemas/partials/target-any.json
|
679
|
+
- lib/bolt_server/schemas/partials/target-ssh.json
|
680
|
+
- lib/bolt_server/schemas/partials/target-winrm.json
|
681
|
+
- lib/bolt_server/schemas/partials/task.json
|
682
|
+
- lib/bolt_server/schemas/transport-ssh.json
|
683
|
+
- lib/bolt_server/schemas/transport-winrm.json
|
684
|
+
- lib/bolt_server/transport_app.rb
|
685
|
+
- lib/bolt_spec/bolt_context.rb
|
686
|
+
- lib/bolt_spec/plans.rb
|
687
|
+
- lib/bolt_spec/plans/action_stubs.rb
|
688
|
+
- lib/bolt_spec/plans/action_stubs/command_stub.rb
|
689
|
+
- lib/bolt_spec/plans/action_stubs/download_stub.rb
|
690
|
+
- lib/bolt_spec/plans/action_stubs/plan_stub.rb
|
691
|
+
- lib/bolt_spec/plans/action_stubs/script_stub.rb
|
692
|
+
- lib/bolt_spec/plans/action_stubs/task_stub.rb
|
693
|
+
- lib/bolt_spec/plans/action_stubs/upload_stub.rb
|
694
|
+
- lib/bolt_spec/plans/mock_executor.rb
|
695
|
+
- lib/bolt_spec/plans/publish_stub.rb
|
696
|
+
- lib/bolt_spec/run.rb
|
697
|
+
- lib/logging_extensions/logging.rb
|
698
|
+
- libexec/apply_catalog.rb
|
699
|
+
- libexec/bolt_catalog
|
700
|
+
- libexec/custom_facts.rb
|
701
|
+
- libexec/query_resources.rb
|
702
|
+
- modules/aggregate/lib/puppet/functions/aggregate/count.rb
|
703
|
+
- modules/aggregate/lib/puppet/functions/aggregate/nodes.rb
|
704
|
+
- modules/aggregate/lib/puppet/functions/aggregate/targets.rb
|
705
|
+
- modules/aggregate/plans/count.pp
|
706
|
+
- modules/aggregate/plans/targets.pp
|
707
|
+
- modules/canary/lib/puppet/functions/canary/merge.rb
|
708
|
+
- modules/canary/lib/puppet/functions/canary/random_split.rb
|
709
|
+
- modules/canary/lib/puppet/functions/canary/skip.rb
|
710
|
+
- modules/canary/plans/init.pp
|
711
|
+
- modules/puppet_connect/plans/test_input_data.pp
|
712
|
+
- modules/puppetdb_fact/plans/init.pp
|
713
|
+
- resources/bolt_bash_completion.sh
|
714
|
+
homepage: https://github.com/OpenVoxProject/openbolt/
|
715
|
+
licenses:
|
716
|
+
- Apache-2.0
|
717
|
+
metadata: {}
|
718
|
+
rdoc_options: []
|
719
|
+
require_paths:
|
720
|
+
- lib
|
721
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
722
|
+
requirements:
|
723
|
+
- - ">="
|
724
|
+
- !ruby/object:Gem::Version
|
725
|
+
version: '3.2'
|
726
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
727
|
+
requirements:
|
728
|
+
- - ">="
|
729
|
+
- !ruby/object:Gem::Version
|
730
|
+
version: '0'
|
731
|
+
requirements: []
|
732
|
+
rubygems_version: 3.6.7
|
733
|
+
specification_version: 4
|
734
|
+
summary: Execute commands remotely over SSH and WinRM
|
735
|
+
test_files: []
|