right_link 5.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (199) hide show
  1. data/actors/agent_manager.rb +88 -0
  2. data/actors/instance_scheduler.rb +321 -0
  3. data/actors/instance_services.rb +64 -0
  4. data/actors/instance_setup.rb +567 -0
  5. data/bin/cloud +25 -0
  6. data/bin/cook_runner +44 -0
  7. data/bin/deploy +120 -0
  8. data/bin/enroll +385 -0
  9. data/bin/rad +32 -0
  10. data/bin/rchk +29 -0
  11. data/bin/rnac +39 -0
  12. data/bin/rs_connect +33 -0
  13. data/bin/rs_log_level +31 -0
  14. data/bin/rs_ohai +28 -0
  15. data/bin/rs_reenroll +31 -0
  16. data/bin/rs_run_recipe +34 -0
  17. data/bin/rs_run_right_script +34 -0
  18. data/bin/rs_shutdown +33 -0
  19. data/bin/rs_tag +33 -0
  20. data/bin/rs_thunk +33 -0
  21. data/bin/rstat +31 -0
  22. data/bin/system +16 -0
  23. data/ext/Rakefile +18 -0
  24. data/init/config.yml +5 -0
  25. data/init/init.rb +79 -0
  26. data/lib/chef/ohai_setup.rb +51 -0
  27. data/lib/chef/plugins/cloud.rb +91 -0
  28. data/lib/chef/plugins/cloudstack.rb +23 -0
  29. data/lib/chef/plugins/ec2.rb +23 -0
  30. data/lib/chef/plugins/linux/block_device2.rb +24 -0
  31. data/lib/chef/plugins/rackspace.rb +23 -0
  32. data/lib/chef/plugins/rightscale.rb +125 -0
  33. data/lib/chef/plugins/windows/network.rb +114 -0
  34. data/lib/chef/plugins.rb +74 -0
  35. data/lib/chef/providers/dns_dnsmadeeasy_provider.rb +81 -0
  36. data/lib/chef/providers/dns_resource.rb +100 -0
  37. data/lib/chef/providers/executable_schedule_provider.rb +70 -0
  38. data/lib/chef/providers/executable_schedule_resource.rb +144 -0
  39. data/lib/chef/providers/remote_recipe_provider.rb +86 -0
  40. data/lib/chef/providers/remote_recipe_resource.rb +101 -0
  41. data/lib/chef/providers/right_link_tag_provider.rb +73 -0
  42. data/lib/chef/providers/right_link_tag_resource.rb +59 -0
  43. data/lib/chef/providers/right_script_provider.rb +190 -0
  44. data/lib/chef/providers/right_script_resource.rb +113 -0
  45. data/lib/chef/providers/rs_shutdown_provider.rb +75 -0
  46. data/lib/chef/providers/rs_shutdown_resource.rb +55 -0
  47. data/lib/chef/providers/server_collection_provider.rb +66 -0
  48. data/lib/chef/providers/server_collection_resource.rb +93 -0
  49. data/lib/chef/providers/windows/powershell_provider.rb +151 -0
  50. data/lib/chef/providers/windows/powershell_resource.rb +111 -0
  51. data/lib/chef/providers/windows/unsupported_provider.rb +51 -0
  52. data/lib/chef/right_providers.rb +55 -0
  53. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ChefNodeCmdlet.csproj +104 -0
  54. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ChefNodeCmdlet.dll-Help.xml +141 -0
  55. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/Exceptions.cs +182 -0
  56. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetChefNodeCommand.cs +58 -0
  57. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetChefNodeRequest.cs +46 -0
  58. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetChefNodeResponse.cs +45 -0
  59. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetCurrentResourceCommand.cs +58 -0
  60. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetCurrentResourceRequest.cs +46 -0
  61. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetCurrentResourceResponse.cs +45 -0
  62. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNewResourceCommand.cs +58 -0
  63. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNewResourceRequest.cs +46 -0
  64. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNewResourceResponse.cs +45 -0
  65. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNextActionCommand.cs +178 -0
  66. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNextActionRequest.cs +67 -0
  67. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNextActionResponse.cs +58 -0
  68. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNodeValueCommandBase.cs +142 -0
  69. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNodeValueRequestBase.cs +64 -0
  70. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNodeValueResponseBase.cs +69 -0
  71. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/JsonTransport.cs +110 -0
  72. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/PipeClient.cs +158 -0
  73. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/PipeServer.cs +142 -0
  74. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/Properties/AssemblyInfo.cs +16 -0
  75. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ProtocolConstants.cs +55 -0
  76. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ProtocolUtilities.cs +77 -0
  77. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ReadMe.txt +53 -0
  78. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetChefNodeCommand.cs +59 -0
  79. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetChefNodeRequest.cs +46 -0
  80. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetChefNodeResponse.cs +58 -0
  81. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetCurrentResourceCommand.cs +59 -0
  82. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetCurrentResourceRequest.cs +46 -0
  83. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetCurrentResourceResponse.cs +40 -0
  84. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNewResourceCommand.cs +59 -0
  85. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNewResourceRequest.cs +46 -0
  86. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNewResourceResponse.cs +40 -0
  87. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNodeValueCommandBase.cs +293 -0
  88. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNodeValueRequestBase.cs +75 -0
  89. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNodeValueResponseBase.cs +45 -0
  90. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/Transport.cs +91 -0
  91. data/lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet.sln +35 -0
  92. data/lib/chef/windows/ChefNodeCmdlet/TestChefNodeCmdlet/Program.cs +374 -0
  93. data/lib/chef/windows/ChefNodeCmdlet/TestChefNodeCmdlet/Properties/AssemblyInfo.cs +16 -0
  94. data/lib/chef/windows/ChefNodeCmdlet/TestChefNodeCmdlet/TestChefNodeCmdlet.csproj +65 -0
  95. data/lib/chef/windows/ChefNodeCmdlet/TestNextActionCmdlet/Program.cs +136 -0
  96. data/lib/chef/windows/ChefNodeCmdlet/TestNextActionCmdlet/Properties/AssemblyInfo.cs +36 -0
  97. data/lib/chef/windows/ChefNodeCmdlet/TestNextActionCmdlet/ReadMe.txt +46 -0
  98. data/lib/chef/windows/ChefNodeCmdlet/TestNextActionCmdlet/TestNextActionCmdlet.csproj +68 -0
  99. data/lib/chef/windows/bin/Newtonsoft.Json.dll +0 -0
  100. data/lib/chef/windows/chef_node_server.rb +463 -0
  101. data/lib/chef/windows/dynamic_powershell_provider.rb +296 -0
  102. data/lib/chef/windows/pipe_server.rb +283 -0
  103. data/lib/chef/windows/powershell_host.rb +285 -0
  104. data/lib/chef/windows/powershell_pipe_server.rb +136 -0
  105. data/lib/chef/windows/powershell_provider_base.rb +92 -0
  106. data/lib/chef/windows/scripts/run_loop.ps1 +105 -0
  107. data/lib/clouds/cloud.rb +557 -0
  108. data/lib/clouds/cloud_factory.rb +250 -0
  109. data/lib/clouds/cloud_utilities.rb +244 -0
  110. data/lib/clouds/clouds/azure.rb +106 -0
  111. data/lib/clouds/clouds/cloudstack.rb +114 -0
  112. data/lib/clouds/clouds/ec2.rb +113 -0
  113. data/lib/clouds/clouds/eucalyptus.rb +46 -0
  114. data/lib/clouds/clouds/google.rb +102 -0
  115. data/lib/clouds/clouds/none.rb +76 -0
  116. data/lib/clouds/clouds/openstack.rb +30 -0
  117. data/lib/clouds/clouds/rackspace-ng.rb +54 -0
  118. data/lib/clouds/clouds/rackspace.rb +78 -0
  119. data/lib/clouds/clouds/softlayer.rb +91 -0
  120. data/lib/clouds/metadata_formatter.rb +108 -0
  121. data/lib/clouds/metadata_provider.rb +128 -0
  122. data/lib/clouds/metadata_source.rb +87 -0
  123. data/lib/clouds/metadata_sources/certificate_metadata_source.rb +207 -0
  124. data/lib/clouds/metadata_sources/config_drive_metadata_source.rb +129 -0
  125. data/lib/clouds/metadata_sources/file_metadata_source.rb +74 -0
  126. data/lib/clouds/metadata_sources/http_metadata_source.rb +277 -0
  127. data/lib/clouds/metadata_sources/selective_metadata_source.rb +122 -0
  128. data/lib/clouds/metadata_tree_climber.rb +144 -0
  129. data/lib/clouds/metadata_writer.rb +155 -0
  130. data/lib/clouds/metadata_writers/dictionary_metadata_writer.rb +72 -0
  131. data/lib/clouds/metadata_writers/ruby_metadata_writer.rb +76 -0
  132. data/lib/clouds/metadata_writers/shell_metadata_writer.rb +121 -0
  133. data/lib/clouds/register_clouds.rb +34 -0
  134. data/lib/clouds.rb +32 -0
  135. data/lib/gem_dependencies.rb +83 -0
  136. data/lib/git_hooks/commit-msg.rb +7 -0
  137. data/lib/instance/agent_config.rb +168 -0
  138. data/lib/instance/agent_watcher.rb +233 -0
  139. data/lib/instance/audit_cook_stub.rb +104 -0
  140. data/lib/instance/audit_proxy.rb +247 -0
  141. data/lib/instance/bundle_queue.rb +104 -0
  142. data/lib/instance/cook/agent_connection.rb +109 -0
  143. data/lib/instance/cook/audit_logger.rb +165 -0
  144. data/lib/instance/cook/audit_stub.rb +142 -0
  145. data/lib/instance/cook/ca-bundle.crt +2794 -0
  146. data/lib/instance/cook/chef_state.rb +211 -0
  147. data/lib/instance/cook/cook.rb +306 -0
  148. data/lib/instance/cook/cook_state.rb +298 -0
  149. data/lib/instance/cook/cookbook_path_mapping.rb +66 -0
  150. data/lib/instance/cook/cookbook_repo_retriever.rb +190 -0
  151. data/lib/instance/cook/executable_sequence.rb +765 -0
  152. data/lib/instance/cook/external_parameter_gatherer.rb +190 -0
  153. data/lib/instance/cook/repose_downloader.rb +349 -0
  154. data/lib/instance/cook/shutdown_request_proxy.rb +121 -0
  155. data/lib/instance/cook.rb +41 -0
  156. data/lib/instance/downloader.rb +208 -0
  157. data/lib/instance/duplicable.rb +67 -0
  158. data/lib/instance/exceptions.rb +49 -0
  159. data/lib/instance/executable_sequence_proxy.rb +278 -0
  160. data/lib/instance/instance_commands.rb +577 -0
  161. data/lib/instance/instance_state.rb +633 -0
  162. data/lib/instance/json_utilities.rb +102 -0
  163. data/lib/instance/login_manager.rb +533 -0
  164. data/lib/instance/login_user_manager.rb +522 -0
  165. data/lib/instance/message_encoder.rb +118 -0
  166. data/lib/instance/multi_thread_bundle_queue.rb +232 -0
  167. data/lib/instance/operation_context.rb +60 -0
  168. data/lib/instance/options_bag.rb +65 -0
  169. data/lib/instance/payload_formatter.rb +46 -0
  170. data/lib/instance/policy.rb +53 -0
  171. data/lib/instance/policy_audit.rb +100 -0
  172. data/lib/instance/policy_manager.rb +146 -0
  173. data/lib/instance/reenroll_manager.rb +104 -0
  174. data/lib/instance/right_scripts_cookbook.rb +181 -0
  175. data/lib/instance/shutdown_request.rb +221 -0
  176. data/lib/instance/single_thread_bundle_queue.rb +189 -0
  177. data/lib/instance/volume_management.rb +450 -0
  178. data/lib/instance.rb +50 -0
  179. data/lib/repo_conf_generators/apt_conf_generators.rb +106 -0
  180. data/lib/repo_conf_generators/gem_conf_generators.rb +80 -0
  181. data/lib/repo_conf_generators/rightscale_conf_generators.rb +254 -0
  182. data/lib/repo_conf_generators/rightscale_key.pub +17 -0
  183. data/lib/repo_conf_generators/yum_conf_generators.rb +225 -0
  184. data/lib/repo_conf_generators.rb +30 -0
  185. data/lib/run_shell.rb +28 -0
  186. data/scripts/agent_checker.rb +571 -0
  187. data/scripts/agent_controller.rb +247 -0
  188. data/scripts/agent_deployer.rb +148 -0
  189. data/scripts/bundle_runner.rb +336 -0
  190. data/scripts/cloud_controller.rb +176 -0
  191. data/scripts/log_level_manager.rb +142 -0
  192. data/scripts/ohai_runner.rb +33 -0
  193. data/scripts/reenroller.rb +193 -0
  194. data/scripts/server_importer.rb +293 -0
  195. data/scripts/shutdown_client.rb +183 -0
  196. data/scripts/system_configurator.rb +367 -0
  197. data/scripts/tagger.rb +381 -0
  198. data/scripts/thunker.rb +356 -0
  199. metadata +418 -0
metadata ADDED
@@ -0,0 +1,418 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: right_link
3
+ version: !ruby/object:Gem::Version
4
+ hash: 19
5
+ prerelease: false
6
+ segments:
7
+ - 5
8
+ - 9
9
+ - 0
10
+ version: 5.9.0
11
+ platform: ruby
12
+ authors:
13
+ - RightScale
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2013-07-07 00:00:00 -07:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ version_requirements: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ hash: 31
28
+ segments:
29
+ - 0
30
+ - 10
31
+ version: "0.10"
32
+ requirement: *id001
33
+ type: :runtime
34
+ name: right_agent
35
+ prerelease: false
36
+ - !ruby/object:Gem::Dependency
37
+ version_requirements: &id002 !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ~>
41
+ - !ruby/object:Gem::Version
42
+ hash: 3
43
+ segments:
44
+ - 3
45
+ - 2
46
+ version: "3.2"
47
+ requirement: *id002
48
+ type: :runtime
49
+ name: right_scraper
50
+ prerelease: false
51
+ - !ruby/object:Gem::Dependency
52
+ version_requirements: &id003 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ~>
56
+ - !ruby/object:Gem::Version
57
+ hash: 13
58
+ segments:
59
+ - 1
60
+ - 1
61
+ version: "1.1"
62
+ requirement: *id003
63
+ type: :runtime
64
+ name: right_popen
65
+ prerelease: false
66
+ - !ruby/object:Gem::Dependency
67
+ version_requirements: &id004 !ruby/object:Gem::Requirement
68
+ none: false
69
+ requirements:
70
+ - - ~>
71
+ - !ruby/object:Gem::Version
72
+ hash: 9
73
+ segments:
74
+ - 1
75
+ - 3
76
+ version: "1.3"
77
+ requirement: *id004
78
+ type: :runtime
79
+ name: right_http_connection
80
+ prerelease: false
81
+ - !ruby/object:Gem::Dependency
82
+ version_requirements: &id005 !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ~>
86
+ - !ruby/object:Gem::Version
87
+ hash: 3
88
+ segments:
89
+ - 2
90
+ - 0
91
+ version: "2.0"
92
+ requirement: *id005
93
+ type: :runtime
94
+ name: right_support
95
+ prerelease: false
96
+ - !ruby/object:Gem::Dependency
97
+ version_requirements: &id006 !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ hash: 35
103
+ segments:
104
+ - 0
105
+ - 10
106
+ - 10
107
+ version: 0.10.10
108
+ requirement: *id006
109
+ type: :runtime
110
+ name: chef
111
+ prerelease: false
112
+ - !ruby/object:Gem::Dependency
113
+ version_requirements: &id007 !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ~>
117
+ - !ruby/object:Gem::Version
118
+ hash: 13
119
+ segments:
120
+ - 1
121
+ - 1
122
+ version: "1.1"
123
+ requirement: *id007
124
+ type: :runtime
125
+ name: encryptor
126
+ prerelease: false
127
+ - !ruby/object:Gem::Dependency
128
+ version_requirements: &id008 !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ hash: 3
134
+ segments:
135
+ - 0
136
+ version: "0"
137
+ requirement: *id008
138
+ type: :runtime
139
+ name: trollop
140
+ prerelease: false
141
+ - !ruby/object:Gem::Dependency
142
+ version_requirements: &id009 !ruby/object:Gem::Requirement
143
+ none: false
144
+ requirements:
145
+ - - ~>
146
+ - !ruby/object:Gem::Version
147
+ hash: 37
148
+ segments:
149
+ - 0
150
+ - 9
151
+ - 15
152
+ version: 0.9.15
153
+ requirement: *id009
154
+ type: :runtime
155
+ name: extlib
156
+ prerelease: false
157
+ description: A daemon that connects systems to the RightScale cloud management platform.
158
+ email: support@rightscale.com
159
+ executables:
160
+ - cloud
161
+ - cook_runner
162
+ - deploy
163
+ - enroll
164
+ - rad
165
+ - rchk
166
+ - rnac
167
+ - rs_connect
168
+ - rs_log_level
169
+ - rs_ohai
170
+ - rs_reenroll
171
+ - rs_run_recipe
172
+ - rs_run_right_script
173
+ - rs_shutdown
174
+ - rs_tag
175
+ - rs_thunk
176
+ - rstat
177
+ - system
178
+ extensions:
179
+ - ext/Rakefile
180
+ extra_rdoc_files: []
181
+
182
+ files:
183
+ - init/config.yml
184
+ - init/init.rb
185
+ - actors/agent_manager.rb
186
+ - actors/instance_scheduler.rb
187
+ - actors/instance_services.rb
188
+ - actors/instance_setup.rb
189
+ - bin/cloud
190
+ - bin/cook_runner
191
+ - bin/deploy
192
+ - bin/enroll
193
+ - bin/rad
194
+ - bin/rchk
195
+ - bin/rnac
196
+ - bin/rs_connect
197
+ - bin/rs_log_level
198
+ - bin/rs_ohai
199
+ - bin/rs_reenroll
200
+ - bin/rs_run_recipe
201
+ - bin/rs_run_right_script
202
+ - bin/rs_shutdown
203
+ - bin/rs_tag
204
+ - bin/rs_thunk
205
+ - bin/rstat
206
+ - bin/system
207
+ - ext/Rakefile
208
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/Exceptions.cs
209
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetChefNodeCommand.cs
210
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetChefNodeRequest.cs
211
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetChefNodeResponse.cs
212
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetCurrentResourceCommand.cs
213
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetCurrentResourceRequest.cs
214
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetCurrentResourceResponse.cs
215
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNewResourceCommand.cs
216
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNewResourceRequest.cs
217
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNewResourceResponse.cs
218
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNextActionCommand.cs
219
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNextActionRequest.cs
220
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNextActionResponse.cs
221
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNodeValueCommandBase.cs
222
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNodeValueRequestBase.cs
223
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/GetNodeValueResponseBase.cs
224
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/JsonTransport.cs
225
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/PipeClient.cs
226
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/PipeServer.cs
227
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/Properties/AssemblyInfo.cs
228
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ProtocolConstants.cs
229
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ProtocolUtilities.cs
230
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetChefNodeCommand.cs
231
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetChefNodeRequest.cs
232
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetChefNodeResponse.cs
233
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetCurrentResourceCommand.cs
234
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetCurrentResourceRequest.cs
235
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetCurrentResourceResponse.cs
236
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNewResourceCommand.cs
237
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNewResourceRequest.cs
238
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNewResourceResponse.cs
239
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNodeValueCommandBase.cs
240
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNodeValueRequestBase.cs
241
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/SetNodeValueResponseBase.cs
242
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/Transport.cs
243
+ - lib/chef/windows/ChefNodeCmdlet/TestChefNodeCmdlet/Program.cs
244
+ - lib/chef/windows/ChefNodeCmdlet/TestChefNodeCmdlet/Properties/AssemblyInfo.cs
245
+ - lib/chef/windows/ChefNodeCmdlet/TestNextActionCmdlet/Program.cs
246
+ - lib/chef/windows/ChefNodeCmdlet/TestNextActionCmdlet/Properties/AssemblyInfo.cs
247
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ChefNodeCmdlet.csproj
248
+ - lib/chef/windows/ChefNodeCmdlet/TestChefNodeCmdlet/TestChefNodeCmdlet.csproj
249
+ - lib/chef/windows/ChefNodeCmdlet/TestNextActionCmdlet/TestNextActionCmdlet.csproj
250
+ - lib/chef/windows/bin/Newtonsoft.Json.dll
251
+ - lib/chef/windows/scripts/run_loop.ps1
252
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet.sln
253
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ReadMe.txt
254
+ - lib/chef/windows/ChefNodeCmdlet/TestNextActionCmdlet/ReadMe.txt
255
+ - lib/chef/windows/ChefNodeCmdlet/ChefNodeCmdlet/ChefNodeCmdlet.dll-Help.xml
256
+ - lib/repo_conf_generators/rightscale_key.pub
257
+ - lib/chef/ohai_setup.rb
258
+ - lib/chef/plugins/cloud.rb
259
+ - lib/chef/plugins/cloudstack.rb
260
+ - lib/chef/plugins/ec2.rb
261
+ - lib/chef/plugins/linux/block_device2.rb
262
+ - lib/chef/plugins/rackspace.rb
263
+ - lib/chef/plugins/rightscale.rb
264
+ - lib/chef/plugins/windows/network.rb
265
+ - lib/chef/plugins.rb
266
+ - lib/chef/providers/dns_dnsmadeeasy_provider.rb
267
+ - lib/chef/providers/dns_resource.rb
268
+ - lib/chef/providers/executable_schedule_provider.rb
269
+ - lib/chef/providers/executable_schedule_resource.rb
270
+ - lib/chef/providers/remote_recipe_provider.rb
271
+ - lib/chef/providers/remote_recipe_resource.rb
272
+ - lib/chef/providers/right_link_tag_provider.rb
273
+ - lib/chef/providers/right_link_tag_resource.rb
274
+ - lib/chef/providers/right_script_provider.rb
275
+ - lib/chef/providers/right_script_resource.rb
276
+ - lib/chef/providers/rs_shutdown_provider.rb
277
+ - lib/chef/providers/rs_shutdown_resource.rb
278
+ - lib/chef/providers/server_collection_provider.rb
279
+ - lib/chef/providers/server_collection_resource.rb
280
+ - lib/chef/providers/windows/powershell_provider.rb
281
+ - lib/chef/providers/windows/powershell_resource.rb
282
+ - lib/chef/providers/windows/unsupported_provider.rb
283
+ - lib/chef/right_providers.rb
284
+ - lib/chef/windows/chef_node_server.rb
285
+ - lib/chef/windows/dynamic_powershell_provider.rb
286
+ - lib/chef/windows/pipe_server.rb
287
+ - lib/chef/windows/powershell_host.rb
288
+ - lib/chef/windows/powershell_pipe_server.rb
289
+ - lib/chef/windows/powershell_provider_base.rb
290
+ - lib/clouds/cloud.rb
291
+ - lib/clouds/cloud_factory.rb
292
+ - lib/clouds/cloud_utilities.rb
293
+ - lib/clouds/clouds/azure.rb
294
+ - lib/clouds/clouds/cloudstack.rb
295
+ - lib/clouds/clouds/ec2.rb
296
+ - lib/clouds/clouds/eucalyptus.rb
297
+ - lib/clouds/clouds/google.rb
298
+ - lib/clouds/clouds/none.rb
299
+ - lib/clouds/clouds/openstack.rb
300
+ - lib/clouds/clouds/rackspace-ng.rb
301
+ - lib/clouds/clouds/rackspace.rb
302
+ - lib/clouds/clouds/softlayer.rb
303
+ - lib/clouds/metadata_formatter.rb
304
+ - lib/clouds/metadata_provider.rb
305
+ - lib/clouds/metadata_source.rb
306
+ - lib/clouds/metadata_sources/certificate_metadata_source.rb
307
+ - lib/clouds/metadata_sources/config_drive_metadata_source.rb
308
+ - lib/clouds/metadata_sources/file_metadata_source.rb
309
+ - lib/clouds/metadata_sources/http_metadata_source.rb
310
+ - lib/clouds/metadata_sources/selective_metadata_source.rb
311
+ - lib/clouds/metadata_tree_climber.rb
312
+ - lib/clouds/metadata_writer.rb
313
+ - lib/clouds/metadata_writers/dictionary_metadata_writer.rb
314
+ - lib/clouds/metadata_writers/ruby_metadata_writer.rb
315
+ - lib/clouds/metadata_writers/shell_metadata_writer.rb
316
+ - lib/clouds/register_clouds.rb
317
+ - lib/clouds.rb
318
+ - lib/gem_dependencies.rb
319
+ - lib/git_hooks/commit-msg.rb
320
+ - lib/instance/agent_config.rb
321
+ - lib/instance/agent_watcher.rb
322
+ - lib/instance/audit_cook_stub.rb
323
+ - lib/instance/audit_proxy.rb
324
+ - lib/instance/bundle_queue.rb
325
+ - lib/instance/cook/agent_connection.rb
326
+ - lib/instance/cook/audit_logger.rb
327
+ - lib/instance/cook/audit_stub.rb
328
+ - lib/instance/cook/chef_state.rb
329
+ - lib/instance/cook/cook.rb
330
+ - lib/instance/cook/cook_state.rb
331
+ - lib/instance/cook/cookbook_path_mapping.rb
332
+ - lib/instance/cook/cookbook_repo_retriever.rb
333
+ - lib/instance/cook/executable_sequence.rb
334
+ - lib/instance/cook/external_parameter_gatherer.rb
335
+ - lib/instance/cook/repose_downloader.rb
336
+ - lib/instance/cook/shutdown_request_proxy.rb
337
+ - lib/instance/cook.rb
338
+ - lib/instance/downloader.rb
339
+ - lib/instance/duplicable.rb
340
+ - lib/instance/exceptions.rb
341
+ - lib/instance/executable_sequence_proxy.rb
342
+ - lib/instance/instance_commands.rb
343
+ - lib/instance/instance_state.rb
344
+ - lib/instance/json_utilities.rb
345
+ - lib/instance/login_manager.rb
346
+ - lib/instance/login_user_manager.rb
347
+ - lib/instance/message_encoder.rb
348
+ - lib/instance/multi_thread_bundle_queue.rb
349
+ - lib/instance/operation_context.rb
350
+ - lib/instance/options_bag.rb
351
+ - lib/instance/payload_formatter.rb
352
+ - lib/instance/policy.rb
353
+ - lib/instance/policy_audit.rb
354
+ - lib/instance/policy_manager.rb
355
+ - lib/instance/reenroll_manager.rb
356
+ - lib/instance/right_scripts_cookbook.rb
357
+ - lib/instance/shutdown_request.rb
358
+ - lib/instance/single_thread_bundle_queue.rb
359
+ - lib/instance/volume_management.rb
360
+ - lib/instance.rb
361
+ - lib/repo_conf_generators/apt_conf_generators.rb
362
+ - lib/repo_conf_generators/gem_conf_generators.rb
363
+ - lib/repo_conf_generators/rightscale_conf_generators.rb
364
+ - lib/repo_conf_generators/yum_conf_generators.rb
365
+ - lib/repo_conf_generators.rb
366
+ - lib/run_shell.rb
367
+ - scripts/agent_checker.rb
368
+ - scripts/agent_controller.rb
369
+ - scripts/agent_deployer.rb
370
+ - scripts/bundle_runner.rb
371
+ - scripts/cloud_controller.rb
372
+ - scripts/log_level_manager.rb
373
+ - scripts/ohai_runner.rb
374
+ - scripts/reenroller.rb
375
+ - scripts/server_importer.rb
376
+ - scripts/shutdown_client.rb
377
+ - scripts/system_configurator.rb
378
+ - scripts/tagger.rb
379
+ - scripts/thunker.rb
380
+ - lib/instance/cook/ca-bundle.crt
381
+ has_rdoc: true
382
+ homepage: https://github.com/rightscale/right_link
383
+ licenses: []
384
+
385
+ post_install_message:
386
+ rdoc_options: []
387
+
388
+ require_paths:
389
+ - lib
390
+ required_ruby_version: !ruby/object:Gem::Requirement
391
+ none: false
392
+ requirements:
393
+ - - ">="
394
+ - !ruby/object:Gem::Version
395
+ hash: 3
396
+ segments:
397
+ - 0
398
+ version: "0"
399
+ required_rubygems_version: !ruby/object:Gem::Requirement
400
+ none: false
401
+ requirements:
402
+ - - ">="
403
+ - !ruby/object:Gem::Version
404
+ hash: 21
405
+ segments:
406
+ - 1
407
+ - 3
408
+ - 7
409
+ version: 1.3.7
410
+ requirements: []
411
+
412
+ rubyforge_project:
413
+ rubygems_version: 1.3.7
414
+ signing_key:
415
+ specification_version: 3
416
+ summary: RightScale management agent.
417
+ test_files: []
418
+