confctl 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +11 -0
  3. data/.gitignore +8 -0
  4. data/.overcommit.yml +6 -0
  5. data/.rubocop.yml +67 -0
  6. data/.rubocop_todo.yml +5 -0
  7. data/.ruby-version +1 -0
  8. data/CHANGELOG.md +2 -0
  9. data/Gemfile +2 -0
  10. data/LICENSE.txt +674 -0
  11. data/README.md +522 -0
  12. data/Rakefile +40 -0
  13. data/bin/confctl +4 -0
  14. data/confctl.gemspec +33 -0
  15. data/example/.gitignore +2 -0
  16. data/example/README.md +38 -0
  17. data/example/cluster/cluster.nix +7 -0
  18. data/example/cluster/module-list.nix +3 -0
  19. data/example/cluster/nixos-machine/config.nix +15 -0
  20. data/example/cluster/nixos-machine/hardware.nix +4 -0
  21. data/example/cluster/nixos-machine/module.nix +8 -0
  22. data/example/cluster/vpsadminos-container/config.nix +22 -0
  23. data/example/cluster/vpsadminos-container/module.nix +8 -0
  24. data/example/cluster/vpsadminos-machine/config.nix +22 -0
  25. data/example/cluster/vpsadminos-machine/hardware.nix +4 -0
  26. data/example/cluster/vpsadminos-machine/module.nix +8 -0
  27. data/example/cluster/vpsfreecz-vps/config.nix +25 -0
  28. data/example/cluster/vpsfreecz-vps/module.nix +8 -0
  29. data/example/configs/confctl.nix +10 -0
  30. data/example/configs/swpins.nix +28 -0
  31. data/example/data/default.nix +5 -0
  32. data/example/data/ssh-keys.nix +7 -0
  33. data/example/environments/base.nix +13 -0
  34. data/example/modules/module-list.nix +13 -0
  35. data/example/shell.nix +11 -0
  36. data/example/swpins/channels/nixos-unstable.json +35 -0
  37. data/example/swpins/channels/vpsadminos-staging.json +35 -0
  38. data/lib/confctl/cli/app.rb +551 -0
  39. data/lib/confctl/cli/attr_filters.rb +51 -0
  40. data/lib/confctl/cli/cluster.rb +1248 -0
  41. data/lib/confctl/cli/command.rb +206 -0
  42. data/lib/confctl/cli/configuration.rb +296 -0
  43. data/lib/confctl/cli/gen_data.rb +97 -0
  44. data/lib/confctl/cli/generation.rb +335 -0
  45. data/lib/confctl/cli/log_view.rb +267 -0
  46. data/lib/confctl/cli/output_formatter.rb +288 -0
  47. data/lib/confctl/cli/swpins/base.rb +40 -0
  48. data/lib/confctl/cli/swpins/channel.rb +73 -0
  49. data/lib/confctl/cli/swpins/cluster.rb +80 -0
  50. data/lib/confctl/cli/swpins/core.rb +86 -0
  51. data/lib/confctl/cli/swpins/utils.rb +55 -0
  52. data/lib/confctl/cli/swpins.rb +5 -0
  53. data/lib/confctl/cli/tag_filters.rb +30 -0
  54. data/lib/confctl/cli.rb +5 -0
  55. data/lib/confctl/conf_cache.rb +105 -0
  56. data/lib/confctl/conf_dir.rb +88 -0
  57. data/lib/confctl/erb_template.rb +37 -0
  58. data/lib/confctl/exceptions.rb +3 -0
  59. data/lib/confctl/gcroot.rb +30 -0
  60. data/lib/confctl/generation/build.rb +145 -0
  61. data/lib/confctl/generation/build_list.rb +106 -0
  62. data/lib/confctl/generation/host.rb +35 -0
  63. data/lib/confctl/generation/host_list.rb +81 -0
  64. data/lib/confctl/generation/unified.rb +117 -0
  65. data/lib/confctl/generation/unified_list.rb +63 -0
  66. data/lib/confctl/git_repo_mirror.rb +79 -0
  67. data/lib/confctl/health_checks/base.rb +66 -0
  68. data/lib/confctl/health_checks/run_command.rb +179 -0
  69. data/lib/confctl/health_checks/systemd/properties.rb +84 -0
  70. data/lib/confctl/health_checks/systemd/property_check.rb +31 -0
  71. data/lib/confctl/health_checks/systemd/property_list.rb +20 -0
  72. data/lib/confctl/health_checks.rb +5 -0
  73. data/lib/confctl/hook.rb +35 -0
  74. data/lib/confctl/line_buffer.rb +53 -0
  75. data/lib/confctl/logger.rb +151 -0
  76. data/lib/confctl/machine.rb +107 -0
  77. data/lib/confctl/machine_control.rb +172 -0
  78. data/lib/confctl/machine_list.rb +108 -0
  79. data/lib/confctl/machine_status.rb +135 -0
  80. data/lib/confctl/module_options.rb +95 -0
  81. data/lib/confctl/nix.rb +382 -0
  82. data/lib/confctl/nix_build.rb +108 -0
  83. data/lib/confctl/nix_collect_garbage.rb +64 -0
  84. data/lib/confctl/nix_copy.rb +49 -0
  85. data/lib/confctl/nix_format.rb +124 -0
  86. data/lib/confctl/nix_literal_expression.rb +15 -0
  87. data/lib/confctl/parallel_executor.rb +43 -0
  88. data/lib/confctl/pattern.rb +9 -0
  89. data/lib/confctl/settings.rb +50 -0
  90. data/lib/confctl/std_line_buffer.rb +40 -0
  91. data/lib/confctl/swpins/change_set.rb +151 -0
  92. data/lib/confctl/swpins/channel.rb +62 -0
  93. data/lib/confctl/swpins/channel_list.rb +47 -0
  94. data/lib/confctl/swpins/cluster_name.rb +94 -0
  95. data/lib/confctl/swpins/cluster_name_list.rb +15 -0
  96. data/lib/confctl/swpins/core.rb +137 -0
  97. data/lib/confctl/swpins/deployed_info.rb +23 -0
  98. data/lib/confctl/swpins/spec.rb +20 -0
  99. data/lib/confctl/swpins/specs/base.rb +184 -0
  100. data/lib/confctl/swpins/specs/directory.rb +51 -0
  101. data/lib/confctl/swpins/specs/git.rb +135 -0
  102. data/lib/confctl/swpins/specs/git_rev.rb +24 -0
  103. data/lib/confctl/swpins.rb +17 -0
  104. data/lib/confctl/system_command.rb +10 -0
  105. data/lib/confctl/user_script.rb +13 -0
  106. data/lib/confctl/user_scripts.rb +41 -0
  107. data/lib/confctl/utils/file.rb +21 -0
  108. data/lib/confctl/version.rb +3 -0
  109. data/lib/confctl.rb +43 -0
  110. data/man/man8/confctl-options.nix.8 +1334 -0
  111. data/man/man8/confctl-options.nix.8.md +1340 -0
  112. data/man/man8/confctl.8 +660 -0
  113. data/man/man8/confctl.8.md +654 -0
  114. data/nix/evaluator.nix +160 -0
  115. data/nix/lib/default.nix +83 -0
  116. data/nix/lib/machine/default.nix +74 -0
  117. data/nix/lib/machine/info.nix +5 -0
  118. data/nix/lib/swpins/eval.nix +71 -0
  119. data/nix/lib/swpins/options.nix +94 -0
  120. data/nix/machines.nix +31 -0
  121. data/nix/modules/cluster/default.nix +459 -0
  122. data/nix/modules/confctl/cli.nix +21 -0
  123. data/nix/modules/confctl/generations.nix +84 -0
  124. data/nix/modules/confctl/nix.nix +28 -0
  125. data/nix/modules/confctl/swpins.nix +55 -0
  126. data/nix/modules/module-list.nix +19 -0
  127. data/shell.nix +42 -0
  128. data/template/confctl-options.nix/main.erb +45 -0
  129. data/template/confctl-options.nix/options.erb +15 -0
  130. metadata +353 -0
@@ -0,0 +1,45 @@
1
+ # confctl-options.nix 8 <%= date.strftime('%Y-%m-%d') %> <%= version %>
2
+
3
+ ## NAME
4
+ `confctl-options.nix` - confctl configuration documentation
5
+
6
+ ## DESCRIPTION
7
+ This document describes Nix options, which can be used in confctl(8) cluster
8
+ configurations to configure `confctl` and machines within the cluster.
9
+
10
+ ## CONFCTL SETTINGS
11
+ The following `confctl` settings can be configured in `configs/confctl.nix`
12
+ within the deployment configuration directory:
13
+
14
+ <%= print_options(opts.confctl_settings) %>
15
+
16
+ ## SOFTWARE PIN CHANNELS
17
+ The following `confctl` settings for software pin channels can be configured
18
+ in `configs/swpins.nix` within the deployment configuration directory:
19
+
20
+ <%= print_options(opts.swpin_settings) %>
21
+
22
+ ## MACHINE CONFIGURATION
23
+ The following options can be configured in per-machine `module.nix` files within
24
+ the deployment configuration directory, i.e. `cluster/<machine-name>/module.nix`:
25
+
26
+ <%= print_options(opts.machine_settings) %>
27
+
28
+ ## SERVICES
29
+ The following options can be configured in per-machine `config.nix` files within
30
+ the deployment configuration directory, i.e. `cluster/<machine-name>/config.nix`,
31
+ or any other imported Nix file. These options are added by `confctl` in addition
32
+ to options from `NixOS` or `vpsAdminOS`.
33
+
34
+ <%= print_options(opts.service_settings) %>
35
+
36
+ ## SEE ALSO
37
+ confctl(8)
38
+
39
+ ## BUGS
40
+ Report bugs to https://github.com/vpsfreecz/confctl/issues.
41
+
42
+ ## ABOUT
43
+ `confctl` was originally developed for the purposes of
44
+ [vpsFree.cz](https://vpsfree.org) and its cluster
45
+ [configuration](https://github.com/vpsfreecz/vpsfree-cz-configuration).
@@ -0,0 +1,15 @@
1
+ <% opts.each do |opt| -%>
2
+ `<%= opt.name %>`
3
+ <%= indent(opt.md_description, 2) %>
4
+
5
+ *Type:* <%= opt.type %>
6
+
7
+ *Default:* `<%= opt.nix_default %>`
8
+ <% if opt.example -%>
9
+
10
+ *Example:* `<%= opt.nix_example %>`
11
+ <% end -%>
12
+
13
+ *Declared by:* <%= opt.declarations.map { |v| "`#{v}`" }.join(', ') %>
14
+
15
+ <% end -%>
metadata ADDED
@@ -0,0 +1,353 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: confctl
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Jakub Skokan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 1980-01-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: curses
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: gli
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 2.21.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 2.21.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: json
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: md2man
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rainbow
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 3.1.1
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 3.1.1
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: require_all
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 2.0.0
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 2.0.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: tty-command
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 0.10.1
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 0.10.1
125
+ - !ruby/object:Gem::Dependency
126
+ name: tty-cursor
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 0.7.1
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: 0.7.1
139
+ - !ruby/object:Gem::Dependency
140
+ name: tty-pager
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: 0.14.0
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: 0.14.0
153
+ - !ruby/object:Gem::Dependency
154
+ name: tty-progressbar
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: 0.18.2
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: 0.18.2
167
+ - !ruby/object:Gem::Dependency
168
+ name: tty-spinner
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: 0.9.3
174
+ type: :runtime
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: 0.9.3
181
+ - !ruby/object:Gem::Dependency
182
+ name: vpsfree-client
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: 0.18.0
188
+ type: :runtime
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: 0.18.0
195
+ description: Nix deployment management tool
196
+ email: jakub.skokan@vpsfree.cz
197
+ executables:
198
+ - confctl
199
+ extensions: []
200
+ extra_rdoc_files: []
201
+ files:
202
+ - ".editorconfig"
203
+ - ".gitignore"
204
+ - ".overcommit.yml"
205
+ - ".rubocop.yml"
206
+ - ".rubocop_todo.yml"
207
+ - ".ruby-version"
208
+ - CHANGELOG.md
209
+ - Gemfile
210
+ - LICENSE.txt
211
+ - README.md
212
+ - Rakefile
213
+ - bin/confctl
214
+ - confctl.gemspec
215
+ - example/.gitignore
216
+ - example/README.md
217
+ - example/cluster/cluster.nix
218
+ - example/cluster/module-list.nix
219
+ - example/cluster/nixos-machine/config.nix
220
+ - example/cluster/nixos-machine/hardware.nix
221
+ - example/cluster/nixos-machine/module.nix
222
+ - example/cluster/vpsadminos-container/config.nix
223
+ - example/cluster/vpsadminos-container/module.nix
224
+ - example/cluster/vpsadminos-machine/config.nix
225
+ - example/cluster/vpsadminos-machine/hardware.nix
226
+ - example/cluster/vpsadminos-machine/module.nix
227
+ - example/cluster/vpsfreecz-vps/config.nix
228
+ - example/cluster/vpsfreecz-vps/module.nix
229
+ - example/configs/confctl.nix
230
+ - example/configs/swpins.nix
231
+ - example/data/default.nix
232
+ - example/data/ssh-keys.nix
233
+ - example/environments/base.nix
234
+ - example/modules/module-list.nix
235
+ - example/shell.nix
236
+ - example/swpins/channels/nixos-unstable.json
237
+ - example/swpins/channels/vpsadminos-staging.json
238
+ - lib/confctl.rb
239
+ - lib/confctl/cli.rb
240
+ - lib/confctl/cli/app.rb
241
+ - lib/confctl/cli/attr_filters.rb
242
+ - lib/confctl/cli/cluster.rb
243
+ - lib/confctl/cli/command.rb
244
+ - lib/confctl/cli/configuration.rb
245
+ - lib/confctl/cli/gen_data.rb
246
+ - lib/confctl/cli/generation.rb
247
+ - lib/confctl/cli/log_view.rb
248
+ - lib/confctl/cli/output_formatter.rb
249
+ - lib/confctl/cli/swpins.rb
250
+ - lib/confctl/cli/swpins/base.rb
251
+ - lib/confctl/cli/swpins/channel.rb
252
+ - lib/confctl/cli/swpins/cluster.rb
253
+ - lib/confctl/cli/swpins/core.rb
254
+ - lib/confctl/cli/swpins/utils.rb
255
+ - lib/confctl/cli/tag_filters.rb
256
+ - lib/confctl/conf_cache.rb
257
+ - lib/confctl/conf_dir.rb
258
+ - lib/confctl/erb_template.rb
259
+ - lib/confctl/exceptions.rb
260
+ - lib/confctl/gcroot.rb
261
+ - lib/confctl/generation/build.rb
262
+ - lib/confctl/generation/build_list.rb
263
+ - lib/confctl/generation/host.rb
264
+ - lib/confctl/generation/host_list.rb
265
+ - lib/confctl/generation/unified.rb
266
+ - lib/confctl/generation/unified_list.rb
267
+ - lib/confctl/git_repo_mirror.rb
268
+ - lib/confctl/health_checks.rb
269
+ - lib/confctl/health_checks/base.rb
270
+ - lib/confctl/health_checks/run_command.rb
271
+ - lib/confctl/health_checks/systemd/properties.rb
272
+ - lib/confctl/health_checks/systemd/property_check.rb
273
+ - lib/confctl/health_checks/systemd/property_list.rb
274
+ - lib/confctl/hook.rb
275
+ - lib/confctl/line_buffer.rb
276
+ - lib/confctl/logger.rb
277
+ - lib/confctl/machine.rb
278
+ - lib/confctl/machine_control.rb
279
+ - lib/confctl/machine_list.rb
280
+ - lib/confctl/machine_status.rb
281
+ - lib/confctl/module_options.rb
282
+ - lib/confctl/nix.rb
283
+ - lib/confctl/nix_build.rb
284
+ - lib/confctl/nix_collect_garbage.rb
285
+ - lib/confctl/nix_copy.rb
286
+ - lib/confctl/nix_format.rb
287
+ - lib/confctl/nix_literal_expression.rb
288
+ - lib/confctl/parallel_executor.rb
289
+ - lib/confctl/pattern.rb
290
+ - lib/confctl/settings.rb
291
+ - lib/confctl/std_line_buffer.rb
292
+ - lib/confctl/swpins.rb
293
+ - lib/confctl/swpins/change_set.rb
294
+ - lib/confctl/swpins/channel.rb
295
+ - lib/confctl/swpins/channel_list.rb
296
+ - lib/confctl/swpins/cluster_name.rb
297
+ - lib/confctl/swpins/cluster_name_list.rb
298
+ - lib/confctl/swpins/core.rb
299
+ - lib/confctl/swpins/deployed_info.rb
300
+ - lib/confctl/swpins/spec.rb
301
+ - lib/confctl/swpins/specs/base.rb
302
+ - lib/confctl/swpins/specs/directory.rb
303
+ - lib/confctl/swpins/specs/git.rb
304
+ - lib/confctl/swpins/specs/git_rev.rb
305
+ - lib/confctl/system_command.rb
306
+ - lib/confctl/user_script.rb
307
+ - lib/confctl/user_scripts.rb
308
+ - lib/confctl/utils/file.rb
309
+ - lib/confctl/version.rb
310
+ - man/man8/confctl-options.nix.8
311
+ - man/man8/confctl-options.nix.8.md
312
+ - man/man8/confctl.8
313
+ - man/man8/confctl.8.md
314
+ - nix/evaluator.nix
315
+ - nix/lib/default.nix
316
+ - nix/lib/machine/default.nix
317
+ - nix/lib/machine/info.nix
318
+ - nix/lib/swpins/eval.nix
319
+ - nix/lib/swpins/options.nix
320
+ - nix/machines.nix
321
+ - nix/modules/cluster/default.nix
322
+ - nix/modules/confctl/cli.nix
323
+ - nix/modules/confctl/generations.nix
324
+ - nix/modules/confctl/nix.nix
325
+ - nix/modules/confctl/swpins.nix
326
+ - nix/modules/module-list.nix
327
+ - shell.nix
328
+ - template/confctl-options.nix/main.erb
329
+ - template/confctl-options.nix/options.erb
330
+ homepage:
331
+ licenses:
332
+ - GPL-3.0-only
333
+ metadata: {}
334
+ post_install_message:
335
+ rdoc_options: []
336
+ require_paths:
337
+ - lib
338
+ required_ruby_version: !ruby/object:Gem::Requirement
339
+ requirements:
340
+ - - ">="
341
+ - !ruby/object:Gem::Version
342
+ version: 3.1.0
343
+ required_rubygems_version: !ruby/object:Gem::Requirement
344
+ requirements:
345
+ - - ">="
346
+ - !ruby/object:Gem::Version
347
+ version: '0'
348
+ requirements: []
349
+ rubygems_version: 3.4.22
350
+ signing_key:
351
+ specification_version: 4
352
+ summary: Nix deployment management tool
353
+ test_files: []