dopi 0.17.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.
Files changed (149) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.rspec +2 -0
  4. data/.ruby-version +1 -0
  5. data/CHANGELOG.md +322 -0
  6. data/Gemfile +7 -0
  7. data/Gemfile.lock +102 -0
  8. data/LICENSE.txt +177 -0
  9. data/README.md +309 -0
  10. data/Rakefile +44 -0
  11. data/Vagrantfile +64 -0
  12. data/bin/dopi +4 -0
  13. data/doc/getting_started.md +247 -0
  14. data/doc/getting_started_examples/001_hello_world.yaml +17 -0
  15. data/doc/getting_started_examples/002_connecting_over_ssh.yaml +35 -0
  16. data/doc/plugins/custom.md +88 -0
  17. data/doc/plugins/mco/rpc.md +82 -0
  18. data/doc/plugins/ssh/custom.md +141 -0
  19. data/doc/plugins/ssh/file_contains.md +37 -0
  20. data/doc/plugins/ssh/file_deploy.md +52 -0
  21. data/doc/plugins/ssh/file_exists.md +31 -0
  22. data/doc/plugins/ssh/file_replace.md +37 -0
  23. data/doc/plugins/ssh/puppet_agent_run.md +50 -0
  24. data/doc/plugins/ssh/reboot.md +22 -0
  25. data/doc/plugins/ssh/wait_for_login.md +53 -0
  26. data/doc/plugins/winrm/cmd.md +161 -0
  27. data/doc/plugins/winrm/file_contains.md +39 -0
  28. data/doc/plugins/winrm/file_exists.md +31 -0
  29. data/doc/plugins/winrm/powershell.md +27 -0
  30. data/doc/plugins/winrm/puppet_agent_run.md +49 -0
  31. data/doc/plugins/winrm/reboot.md +17 -0
  32. data/doc/plugins/winrm/wait_for_login.md +55 -0
  33. data/dopi.gemspec +42 -0
  34. data/lib/dopi/cli/command_add.rb +35 -0
  35. data/lib/dopi/cli/command_list.rb +19 -0
  36. data/lib/dopi/cli/command_remove.rb +31 -0
  37. data/lib/dopi/cli/command_reset.rb +27 -0
  38. data/lib/dopi/cli/command_run.rb +68 -0
  39. data/lib/dopi/cli/command_show.rb +109 -0
  40. data/lib/dopi/cli/command_update.rb +37 -0
  41. data/lib/dopi/cli/command_validate.rb +27 -0
  42. data/lib/dopi/cli/global_options.rb +55 -0
  43. data/lib/dopi/cli/log.rb +33 -0
  44. data/lib/dopi/cli.rb +57 -0
  45. data/lib/dopi/command/custom.rb +52 -0
  46. data/lib/dopi/command/dummy.rb +27 -0
  47. data/lib/dopi/command/mco/rpc.rb +158 -0
  48. data/lib/dopi/command/ssh/custom.rb +48 -0
  49. data/lib/dopi/command/ssh/file_contains.rb +70 -0
  50. data/lib/dopi/command/ssh/file_deploy.rb +71 -0
  51. data/lib/dopi/command/ssh/file_exists.rb +54 -0
  52. data/lib/dopi/command/ssh/file_replace.rb +96 -0
  53. data/lib/dopi/command/ssh/puppet_agent_run.rb +63 -0
  54. data/lib/dopi/command/ssh/reboot.rb +50 -0
  55. data/lib/dopi/command/ssh/wait_for_login.rb +68 -0
  56. data/lib/dopi/command/winrm/cmd.rb +44 -0
  57. data/lib/dopi/command/winrm/file_contains.rb +66 -0
  58. data/lib/dopi/command/winrm/file_exists.rb +51 -0
  59. data/lib/dopi/command/winrm/powershell.rb +16 -0
  60. data/lib/dopi/command/winrm/puppet_agent_run.rb +61 -0
  61. data/lib/dopi/command/winrm/reboot.rb +33 -0
  62. data/lib/dopi/command/winrm/wait_for_login.rb +49 -0
  63. data/lib/dopi/command.rb +239 -0
  64. data/lib/dopi/command_parser/arguments.rb +38 -0
  65. data/lib/dopi/command_parser/credentials.rb +59 -0
  66. data/lib/dopi/command_parser/env.rb +37 -0
  67. data/lib/dopi/command_parser/exec.rb +27 -0
  68. data/lib/dopi/command_parser/exit_code.rb +73 -0
  69. data/lib/dopi/command_parser/output.rb +126 -0
  70. data/lib/dopi/command_set.rb +66 -0
  71. data/lib/dopi/connector/local.rb +77 -0
  72. data/lib/dopi/connector/ssh.rb +170 -0
  73. data/lib/dopi/connector/winrm.rb +167 -0
  74. data/lib/dopi/error.rb +43 -0
  75. data/lib/dopi/log.rb +18 -0
  76. data/lib/dopi/node.rb +70 -0
  77. data/lib/dopi/plan.rb +99 -0
  78. data/lib/dopi/pluginmanager.rb +62 -0
  79. data/lib/dopi/state.rb +226 -0
  80. data/lib/dopi/state_store.rb +155 -0
  81. data/lib/dopi/step.rb +227 -0
  82. data/lib/dopi/step_set.rb +70 -0
  83. data/lib/dopi/version.rb +3 -0
  84. data/lib/dopi.rb +165 -0
  85. data/spec/command_helper.rb +11 -0
  86. data/spec/fixtures/mco_client.cfg +26 -0
  87. data/spec/fixtures/plans/fail_on_timeout.yaml +20 -0
  88. data/spec/fixtures/plans/hello_world.yaml +34 -0
  89. data/spec/fixtures/plans/non_existing_node.yaml +26 -0
  90. data/spec/fixtures/plans/test_role_variable.yaml +29 -0
  91. data/spec/fixtures/puppet/Puppetfile +8 -0
  92. data/spec/fixtures/puppet/Puppetfile.lock +57 -0
  93. data/spec/fixtures/puppet/hiera.yaml +6 -0
  94. data/spec/fixtures/puppet/manifests/site.pp +52 -0
  95. data/spec/fixtures/test_configuration.yaml +54 -0
  96. data/spec/fixtures/test_credentials.yaml +11 -0
  97. data/spec/fixtures/test_deloyed_file.txt +5 -0
  98. data/spec/fixtures/test_infrastructure.yaml +12 -0
  99. data/spec/fixtures/test_nodes.yaml +45 -0
  100. data/spec/fixtures/testenv_plan.yaml +159 -0
  101. data/spec/integration/dopi/addrun_spec.rb +31 -0
  102. data/spec/integration/dopi/cli/command_run_spec.rb +38 -0
  103. data/spec/integration/dopi/cli/global_options_spec.rb +128 -0
  104. data/spec/integration/dopi/command_spec.rb +66 -0
  105. data/spec/integration/dopi/fail_check_plans/file_exists_fails.yaml +38 -0
  106. data/spec/integration/dopi/fail_check_plans/output_parser.yaml +39 -0
  107. data/spec/integration/dopi/fail_check_plans/powershell_fail.yaml +25 -0
  108. data/spec/integration/dopi/fail_check_plans/timeout.yaml +29 -0
  109. data/spec/integration/dopi/fail_check_plans/verify_commands.yaml +33 -0
  110. data/spec/integration/dopi/failplan.rb +27 -0
  111. data/spec/integration/dopi/plan.rb +27 -0
  112. data/spec/integration/dopi/plans/dummy.yaml +29 -0
  113. data/spec/integration/dopi/plans/max_per_role.yaml +55 -0
  114. data/spec/integration/dopi/plans/no_timeout.yaml +29 -0
  115. data/spec/integration/dopi/plans/node_and_role_patterns.yaml +58 -0
  116. data/spec/integration/dopi/plans/node_by_config.yaml +116 -0
  117. data/spec/integration/dopi/plans/plugin_defaults.yaml +86 -0
  118. data/spec/integration/dopi/plans/plugins/mco/rpc.yaml +33 -0
  119. data/spec/integration/dopi/plans/plugins/ssh/custom.yaml +97 -0
  120. data/spec/integration/dopi/plans/plugins/ssh/file_contains.yaml +51 -0
  121. data/spec/integration/dopi/plans/plugins/ssh/file_deploy.yaml +82 -0
  122. data/spec/integration/dopi/plans/plugins/ssh/file_exists.yaml +69 -0
  123. data/spec/integration/dopi/plans/plugins/ssh/file_replace.yaml +55 -0
  124. data/spec/integration/dopi/plans/plugins/ssh/puppet_agent_run.yaml +45 -0
  125. data/spec/integration/dopi/plans/plugins/ssh/reboot.yaml +43 -0
  126. data/spec/integration/dopi/plans/plugins/ssh/wait_for_login.yaml +45 -0
  127. data/spec/integration/dopi/plans/plugins/winrm/cmd.yaml +39 -0
  128. data/spec/integration/dopi/plans/plugins/winrm/file_contains.yaml +51 -0
  129. data/spec/integration/dopi/plans/plugins/winrm/file_exists.yaml +69 -0
  130. data/spec/integration/dopi/plans/plugins/winrm/reboot.yaml +31 -0
  131. data/spec/integration/dopi/plans/resolve_roles_on_validate.yaml +23 -0
  132. data/spec/integration/dopi/plans/ssh_parallel.yaml +37 -0
  133. data/spec/integration/dopi/plans/verify_commands.yaml +49 -0
  134. data/spec/spec_helper.rb +104 -0
  135. data/spec/unit/dopi/command/custom_spec.rb +58 -0
  136. data/spec/unit/dopi/command/mco/rpc_spec.rb +157 -0
  137. data/spec/unit/dopi/command/ssh/custom_spec.rb +30 -0
  138. data/spec/unit/dopi/command/ssh/file_deploy_spec.rb +42 -0
  139. data/spec/unit/dopi/command/ssh/file_replace_spec.rb +35 -0
  140. data/spec/unit/dopi/command_parser/credentials_spec.rb +53 -0
  141. data/spec/unit/dopi/command_parser/exit_code_spec.rb +63 -0
  142. data/spec/unit/dopi/command_parser/output_spec.rb +129 -0
  143. data/spec/unit/dopi/command_spec.rb +14 -0
  144. data/spec/unit/dopi/connector/winrm_spec.rb +111 -0
  145. data/spec/unit/dopi/node_spec.rb +24 -0
  146. data/spec/unit/dopi/plan_spec.rb +31 -0
  147. data/spec/unit/dopi/state_spec.rb +109 -0
  148. data/spec/unit/dopi/step_spec.rb +13 -0
  149. metadata +448 -0
metadata ADDED
@@ -0,0 +1,448 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dopi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.17.0
5
+ platform: ruby
6
+ authors:
7
+ - Andreas Zuber
8
+ - Andreas Maierhofer
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2017-03-28 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1.3'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '1.3'
28
+ - !ruby/object:Gem::Dependency
29
+ name: rake
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rspec
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: rspec-mocks
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ - !ruby/object:Gem::Dependency
71
+ name: rspec-command
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ - !ruby/object:Gem::Dependency
85
+ name: simplecov
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ - !ruby/object:Gem::Dependency
99
+ name: dop_common
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '0.13'
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: 0.13.0
108
+ type: :runtime
109
+ prerelease: false
110
+ version_requirements: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - "~>"
113
+ - !ruby/object:Gem::Version
114
+ version: '0.13'
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: 0.13.0
118
+ - !ruby/object:Gem::Dependency
119
+ name: gli
120
+ requirement: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '2'
125
+ type: :runtime
126
+ prerelease: false
127
+ version_requirements: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '2'
132
+ - !ruby/object:Gem::Dependency
133
+ name: logger-colors
134
+ requirement: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '1'
139
+ type: :runtime
140
+ prerelease: false
141
+ version_requirements: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '1'
146
+ - !ruby/object:Gem::Dependency
147
+ name: mcollective-client
148
+ requirement: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '2'
153
+ type: :runtime
154
+ prerelease: false
155
+ version_requirements: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '2'
160
+ - !ruby/object:Gem::Dependency
161
+ name: winrm
162
+ requirement: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '1'
167
+ type: :runtime
168
+ prerelease: false
169
+ version_requirements: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '1'
174
+ - !ruby/object:Gem::Dependency
175
+ name: parallel
176
+ requirement: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: '1'
181
+ type: :runtime
182
+ prerelease: false
183
+ version_requirements: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: '1'
188
+ - !ruby/object:Gem::Dependency
189
+ name: curses
190
+ requirement: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: '1'
195
+ type: :runtime
196
+ prerelease: false
197
+ version_requirements: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - "~>"
200
+ - !ruby/object:Gem::Version
201
+ version: '1'
202
+ description: DOPi orchestrates puppet runs, mco calls and custom commands over different
203
+ nodes
204
+ email:
205
+ - zuber@puzzle.ch
206
+ - andreas.maierhofer@swisscom.com
207
+ executables:
208
+ - dopi
209
+ extensions: []
210
+ extra_rdoc_files: []
211
+ files:
212
+ - ".gitignore"
213
+ - ".rspec"
214
+ - ".ruby-version"
215
+ - CHANGELOG.md
216
+ - Gemfile
217
+ - Gemfile.lock
218
+ - LICENSE.txt
219
+ - README.md
220
+ - Rakefile
221
+ - Vagrantfile
222
+ - bin/dopi
223
+ - doc/getting_started.md
224
+ - doc/getting_started_examples/001_hello_world.yaml
225
+ - doc/getting_started_examples/002_connecting_over_ssh.yaml
226
+ - doc/plugins/custom.md
227
+ - doc/plugins/mco/rpc.md
228
+ - doc/plugins/ssh/custom.md
229
+ - doc/plugins/ssh/file_contains.md
230
+ - doc/plugins/ssh/file_deploy.md
231
+ - doc/plugins/ssh/file_exists.md
232
+ - doc/plugins/ssh/file_replace.md
233
+ - doc/plugins/ssh/puppet_agent_run.md
234
+ - doc/plugins/ssh/reboot.md
235
+ - doc/plugins/ssh/wait_for_login.md
236
+ - doc/plugins/winrm/cmd.md
237
+ - doc/plugins/winrm/file_contains.md
238
+ - doc/plugins/winrm/file_exists.md
239
+ - doc/plugins/winrm/powershell.md
240
+ - doc/plugins/winrm/puppet_agent_run.md
241
+ - doc/plugins/winrm/reboot.md
242
+ - doc/plugins/winrm/wait_for_login.md
243
+ - dopi.gemspec
244
+ - lib/dopi.rb
245
+ - lib/dopi/cli.rb
246
+ - lib/dopi/cli/command_add.rb
247
+ - lib/dopi/cli/command_list.rb
248
+ - lib/dopi/cli/command_remove.rb
249
+ - lib/dopi/cli/command_reset.rb
250
+ - lib/dopi/cli/command_run.rb
251
+ - lib/dopi/cli/command_show.rb
252
+ - lib/dopi/cli/command_update.rb
253
+ - lib/dopi/cli/command_validate.rb
254
+ - lib/dopi/cli/global_options.rb
255
+ - lib/dopi/cli/log.rb
256
+ - lib/dopi/command.rb
257
+ - lib/dopi/command/custom.rb
258
+ - lib/dopi/command/dummy.rb
259
+ - lib/dopi/command/mco/rpc.rb
260
+ - lib/dopi/command/ssh/custom.rb
261
+ - lib/dopi/command/ssh/file_contains.rb
262
+ - lib/dopi/command/ssh/file_deploy.rb
263
+ - lib/dopi/command/ssh/file_exists.rb
264
+ - lib/dopi/command/ssh/file_replace.rb
265
+ - lib/dopi/command/ssh/puppet_agent_run.rb
266
+ - lib/dopi/command/ssh/reboot.rb
267
+ - lib/dopi/command/ssh/wait_for_login.rb
268
+ - lib/dopi/command/winrm/cmd.rb
269
+ - lib/dopi/command/winrm/file_contains.rb
270
+ - lib/dopi/command/winrm/file_exists.rb
271
+ - lib/dopi/command/winrm/powershell.rb
272
+ - lib/dopi/command/winrm/puppet_agent_run.rb
273
+ - lib/dopi/command/winrm/reboot.rb
274
+ - lib/dopi/command/winrm/wait_for_login.rb
275
+ - lib/dopi/command_parser/arguments.rb
276
+ - lib/dopi/command_parser/credentials.rb
277
+ - lib/dopi/command_parser/env.rb
278
+ - lib/dopi/command_parser/exec.rb
279
+ - lib/dopi/command_parser/exit_code.rb
280
+ - lib/dopi/command_parser/output.rb
281
+ - lib/dopi/command_set.rb
282
+ - lib/dopi/connector/local.rb
283
+ - lib/dopi/connector/ssh.rb
284
+ - lib/dopi/connector/winrm.rb
285
+ - lib/dopi/error.rb
286
+ - lib/dopi/log.rb
287
+ - lib/dopi/node.rb
288
+ - lib/dopi/plan.rb
289
+ - lib/dopi/pluginmanager.rb
290
+ - lib/dopi/state.rb
291
+ - lib/dopi/state_store.rb
292
+ - lib/dopi/step.rb
293
+ - lib/dopi/step_set.rb
294
+ - lib/dopi/version.rb
295
+ - spec/command_helper.rb
296
+ - spec/fixtures/mco_client.cfg
297
+ - spec/fixtures/plans/fail_on_timeout.yaml
298
+ - spec/fixtures/plans/hello_world.yaml
299
+ - spec/fixtures/plans/non_existing_node.yaml
300
+ - spec/fixtures/plans/test_role_variable.yaml
301
+ - spec/fixtures/puppet/Puppetfile
302
+ - spec/fixtures/puppet/Puppetfile.lock
303
+ - spec/fixtures/puppet/hiera.yaml
304
+ - spec/fixtures/puppet/manifests/site.pp
305
+ - spec/fixtures/test_configuration.yaml
306
+ - spec/fixtures/test_credentials.yaml
307
+ - spec/fixtures/test_deloyed_file.txt
308
+ - spec/fixtures/test_infrastructure.yaml
309
+ - spec/fixtures/test_nodes.yaml
310
+ - spec/fixtures/testenv_plan.yaml
311
+ - spec/integration/dopi/addrun_spec.rb
312
+ - spec/integration/dopi/cli/command_run_spec.rb
313
+ - spec/integration/dopi/cli/global_options_spec.rb
314
+ - spec/integration/dopi/command_spec.rb
315
+ - spec/integration/dopi/fail_check_plans/file_exists_fails.yaml
316
+ - spec/integration/dopi/fail_check_plans/output_parser.yaml
317
+ - spec/integration/dopi/fail_check_plans/powershell_fail.yaml
318
+ - spec/integration/dopi/fail_check_plans/timeout.yaml
319
+ - spec/integration/dopi/fail_check_plans/verify_commands.yaml
320
+ - spec/integration/dopi/failplan.rb
321
+ - spec/integration/dopi/plan.rb
322
+ - spec/integration/dopi/plans/dummy.yaml
323
+ - spec/integration/dopi/plans/max_per_role.yaml
324
+ - spec/integration/dopi/plans/no_timeout.yaml
325
+ - spec/integration/dopi/plans/node_and_role_patterns.yaml
326
+ - spec/integration/dopi/plans/node_by_config.yaml
327
+ - spec/integration/dopi/plans/plugin_defaults.yaml
328
+ - spec/integration/dopi/plans/plugins/mco/rpc.yaml
329
+ - spec/integration/dopi/plans/plugins/ssh/custom.yaml
330
+ - spec/integration/dopi/plans/plugins/ssh/file_contains.yaml
331
+ - spec/integration/dopi/plans/plugins/ssh/file_deploy.yaml
332
+ - spec/integration/dopi/plans/plugins/ssh/file_exists.yaml
333
+ - spec/integration/dopi/plans/plugins/ssh/file_replace.yaml
334
+ - spec/integration/dopi/plans/plugins/ssh/puppet_agent_run.yaml
335
+ - spec/integration/dopi/plans/plugins/ssh/reboot.yaml
336
+ - spec/integration/dopi/plans/plugins/ssh/wait_for_login.yaml
337
+ - spec/integration/dopi/plans/plugins/winrm/cmd.yaml
338
+ - spec/integration/dopi/plans/plugins/winrm/file_contains.yaml
339
+ - spec/integration/dopi/plans/plugins/winrm/file_exists.yaml
340
+ - spec/integration/dopi/plans/plugins/winrm/reboot.yaml
341
+ - spec/integration/dopi/plans/resolve_roles_on_validate.yaml
342
+ - spec/integration/dopi/plans/ssh_parallel.yaml
343
+ - spec/integration/dopi/plans/verify_commands.yaml
344
+ - spec/spec_helper.rb
345
+ - spec/unit/dopi/command/custom_spec.rb
346
+ - spec/unit/dopi/command/mco/rpc_spec.rb
347
+ - spec/unit/dopi/command/ssh/custom_spec.rb
348
+ - spec/unit/dopi/command/ssh/file_deploy_spec.rb
349
+ - spec/unit/dopi/command/ssh/file_replace_spec.rb
350
+ - spec/unit/dopi/command_parser/credentials_spec.rb
351
+ - spec/unit/dopi/command_parser/exit_code_spec.rb
352
+ - spec/unit/dopi/command_parser/output_spec.rb
353
+ - spec/unit/dopi/command_spec.rb
354
+ - spec/unit/dopi/connector/winrm_spec.rb
355
+ - spec/unit/dopi/node_spec.rb
356
+ - spec/unit/dopi/plan_spec.rb
357
+ - spec/unit/dopi/state_spec.rb
358
+ - spec/unit/dopi/step_spec.rb
359
+ homepage: ''
360
+ licenses:
361
+ - Apache-2.0
362
+ metadata: {}
363
+ post_install_message:
364
+ rdoc_options: []
365
+ require_paths:
366
+ - lib
367
+ required_ruby_version: !ruby/object:Gem::Requirement
368
+ requirements:
369
+ - - ">="
370
+ - !ruby/object:Gem::Version
371
+ version: 1.9.3
372
+ required_rubygems_version: !ruby/object:Gem::Requirement
373
+ requirements:
374
+ - - ">="
375
+ - !ruby/object:Gem::Version
376
+ version: '0'
377
+ requirements: []
378
+ rubyforge_project:
379
+ rubygems_version: 2.6.10
380
+ signing_key:
381
+ specification_version: 4
382
+ summary: DOPi orchestrates puppet runs, mco calls and custom commands over different
383
+ nodes
384
+ test_files:
385
+ - spec/command_helper.rb
386
+ - spec/fixtures/mco_client.cfg
387
+ - spec/fixtures/plans/fail_on_timeout.yaml
388
+ - spec/fixtures/plans/hello_world.yaml
389
+ - spec/fixtures/plans/non_existing_node.yaml
390
+ - spec/fixtures/plans/test_role_variable.yaml
391
+ - spec/fixtures/puppet/Puppetfile
392
+ - spec/fixtures/puppet/Puppetfile.lock
393
+ - spec/fixtures/puppet/hiera.yaml
394
+ - spec/fixtures/puppet/manifests/site.pp
395
+ - spec/fixtures/test_configuration.yaml
396
+ - spec/fixtures/test_credentials.yaml
397
+ - spec/fixtures/test_deloyed_file.txt
398
+ - spec/fixtures/test_infrastructure.yaml
399
+ - spec/fixtures/test_nodes.yaml
400
+ - spec/fixtures/testenv_plan.yaml
401
+ - spec/integration/dopi/addrun_spec.rb
402
+ - spec/integration/dopi/cli/command_run_spec.rb
403
+ - spec/integration/dopi/cli/global_options_spec.rb
404
+ - spec/integration/dopi/command_spec.rb
405
+ - spec/integration/dopi/fail_check_plans/file_exists_fails.yaml
406
+ - spec/integration/dopi/fail_check_plans/output_parser.yaml
407
+ - spec/integration/dopi/fail_check_plans/powershell_fail.yaml
408
+ - spec/integration/dopi/fail_check_plans/timeout.yaml
409
+ - spec/integration/dopi/fail_check_plans/verify_commands.yaml
410
+ - spec/integration/dopi/failplan.rb
411
+ - spec/integration/dopi/plan.rb
412
+ - spec/integration/dopi/plans/dummy.yaml
413
+ - spec/integration/dopi/plans/max_per_role.yaml
414
+ - spec/integration/dopi/plans/no_timeout.yaml
415
+ - spec/integration/dopi/plans/node_and_role_patterns.yaml
416
+ - spec/integration/dopi/plans/node_by_config.yaml
417
+ - spec/integration/dopi/plans/plugin_defaults.yaml
418
+ - spec/integration/dopi/plans/plugins/mco/rpc.yaml
419
+ - spec/integration/dopi/plans/plugins/ssh/custom.yaml
420
+ - spec/integration/dopi/plans/plugins/ssh/file_contains.yaml
421
+ - spec/integration/dopi/plans/plugins/ssh/file_deploy.yaml
422
+ - spec/integration/dopi/plans/plugins/ssh/file_exists.yaml
423
+ - spec/integration/dopi/plans/plugins/ssh/file_replace.yaml
424
+ - spec/integration/dopi/plans/plugins/ssh/puppet_agent_run.yaml
425
+ - spec/integration/dopi/plans/plugins/ssh/reboot.yaml
426
+ - spec/integration/dopi/plans/plugins/ssh/wait_for_login.yaml
427
+ - spec/integration/dopi/plans/plugins/winrm/cmd.yaml
428
+ - spec/integration/dopi/plans/plugins/winrm/file_contains.yaml
429
+ - spec/integration/dopi/plans/plugins/winrm/file_exists.yaml
430
+ - spec/integration/dopi/plans/plugins/winrm/reboot.yaml
431
+ - spec/integration/dopi/plans/resolve_roles_on_validate.yaml
432
+ - spec/integration/dopi/plans/ssh_parallel.yaml
433
+ - spec/integration/dopi/plans/verify_commands.yaml
434
+ - spec/spec_helper.rb
435
+ - spec/unit/dopi/command/custom_spec.rb
436
+ - spec/unit/dopi/command/mco/rpc_spec.rb
437
+ - spec/unit/dopi/command/ssh/custom_spec.rb
438
+ - spec/unit/dopi/command/ssh/file_deploy_spec.rb
439
+ - spec/unit/dopi/command/ssh/file_replace_spec.rb
440
+ - spec/unit/dopi/command_parser/credentials_spec.rb
441
+ - spec/unit/dopi/command_parser/exit_code_spec.rb
442
+ - spec/unit/dopi/command_parser/output_spec.rb
443
+ - spec/unit/dopi/command_spec.rb
444
+ - spec/unit/dopi/connector/winrm_spec.rb
445
+ - spec/unit/dopi/node_spec.rb
446
+ - spec/unit/dopi/plan_spec.rb
447
+ - spec/unit/dopi/state_spec.rb
448
+ - spec/unit/dopi/step_spec.rb