vagrant-hetznercloud 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/LICENSE +201 -0
  4. data/README.md +111 -0
  5. data/Rakefile +6 -0
  6. data/example_box/metadata.json +3 -0
  7. data/examples/Vagrantfile +63 -0
  8. data/hetznercloud.box +0 -0
  9. data/lib/vagrant-hetznercloud.rb +18 -0
  10. data/lib/vagrant-hetznercloud/action.rb +189 -0
  11. data/lib/vagrant-hetznercloud/action/connect_hetznercloud.rb +33 -0
  12. data/lib/vagrant-hetznercloud/action/create_server.rb +92 -0
  13. data/lib/vagrant-hetznercloud/action/destroy_server.rb +33 -0
  14. data/lib/vagrant-hetznercloud/action/is_created.rb +18 -0
  15. data/lib/vagrant-hetznercloud/action/is_stopped.rb +18 -0
  16. data/lib/vagrant-hetznercloud/action/list_images.rb +23 -0
  17. data/lib/vagrant-hetznercloud/action/message_already_created.rb +16 -0
  18. data/lib/vagrant-hetznercloud/action/message_not_created.rb +16 -0
  19. data/lib/vagrant-hetznercloud/action/message_will_not_destroy.rb +16 -0
  20. data/lib/vagrant-hetznercloud/action/read_ssh_info.rb +51 -0
  21. data/lib/vagrant-hetznercloud/action/read_state.rb +36 -0
  22. data/lib/vagrant-hetznercloud/action/start_server.rb +90 -0
  23. data/lib/vagrant-hetznercloud/action/stop_server.rb +25 -0
  24. data/lib/vagrant-hetznercloud/action/warn_networks.rb +19 -0
  25. data/lib/vagrant-hetznercloud/command/images.rb +20 -0
  26. data/lib/vagrant-hetznercloud/command/root.rb +61 -0
  27. data/lib/vagrant-hetznercloud/config.rb +145 -0
  28. data/lib/vagrant-hetznercloud/errors.rb +21 -0
  29. data/lib/vagrant-hetznercloud/plugin.rb +77 -0
  30. data/lib/vagrant-hetznercloud/provider.rb +48 -0
  31. data/lib/vagrant-hetznercloud/util/timer.rb +17 -0
  32. data/lib/vagrant-hetznercloud/version.rb +5 -0
  33. data/locales/en.yml +90 -0
  34. data/vagrant-hetznercloud.gemspec +30 -0
  35. metadata +147 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 767df6134ca3dbdd8b80d875f6b6ae1bda5b0fa9
4
+ data.tar.gz: 34da588e386d702521dc2978a7cc71a08ee86256
5
+ SHA512:
6
+ metadata.gz: bd0b7582dc180ff0e89b31cea8f1a04b261adf02c32bd637f20581fd407849031d93639514d5075db8a587f30b5de8511b052bf2454158d8beea2d28dbee2358
7
+ data.tar.gz: e175cf0c82ec9c77e04968b98a9b38051aed160a3bf4a9347de4a1f0be9dd70dc79b618616a792704fa72889b761b7d583c889480eb9e29670ac516fc10dcbb8
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ group :plugins do
4
+ gemspec
5
+ end
6
+
7
+ group :development do
8
+ gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git'
9
+ end
data/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [2018] [Robert Heinzmann - elconas.de]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,111 @@
1
+
2
+ # Vagrant Hetznercloud Provider
3
+
4
+ This is a [Vagrant](http://www.vagrantup.com/) plugin that adds a
5
+ [Hetznercloud](https://cloud.hetzner.com/) provider to Vagrant, allowing Vagrant to
6
+ control and provision machines in Hetznercloud.
7
+
8
+ **NOTE: This is currently a MVP Prototyp (and my first vagrant plugin). Probably the interface will change. Development is tracked at [Trello](https://trello.com/b/zJx9W0OY/vagrant-hetznercloud)**
9
+
10
+
11
+ ## Features
12
+
13
+ - Boot Hetznercloud servers (supports types, user_data and ssh_keys)
14
+ - SSH into the servers.
15
+ - Provision the servers with any built-in Vagrant provisioner.
16
+ - Minimal synced folder support via rsync.
17
+
18
+ Missing Features:
19
+
20
+ - cli "command" support for listing server types, prieces, datacenters, locations ... everything
21
+ - proper cli "command" support with multi machine vagrantfiles
22
+ - probably a lot :)
23
+
24
+ ## Prerequisites
25
+
26
+ Prior to using this plugin, you will first need to create an API token and
27
+ identify your organization ID. Please see the following help pages for
28
+ instructions.
29
+
30
+ - [Hetznercloud Getting Started Guide](https://docs.hetzner.cloud/#header-getting-started-1)
31
+
32
+ ## Installation
33
+
34
+ Install using standard Vagrant plugin installation methods.
35
+
36
+ $ vagrant plugin install vagrant-hetznercloud
37
+
38
+ **Note**: As this plugin is not yet released you have to:
39
+
40
+ - checkout the code
41
+ - run $rake build
42
+ - vagrant install pkd/plugin.gem
43
+ - vagrant box add --name base hetznercloud.box
44
+
45
+ ## Usage
46
+
47
+ 1) Generate Token in the Web GUI of Hetznercloud
48
+
49
+ Create new API token in the Hetznercloud [Console](https://console.hetzner.cloud/).
50
+
51
+ 2) Optional: Install the hcloud cli
52
+
53
+ If you install the [Hetzner cli](https://github.com/hetznercloud/cli) and configure it with credentials,
54
+ the vagrant-hetznercloud driver automatically picks up your default context
55
+ from the ~/.config/hcloud/cli.toml settings file. Therefor you do not need to
56
+ set the credentials in the environment or in the Vagrantfile.
57
+
58
+ 1) Create Vagrantfile
59
+
60
+ See [examples/Vagrantfile](examples/Vagrantfile) for an example Vagrantfile:
61
+
62
+ 2) Start your machines
63
+
64
+ And then run `vagrant up` and specify the `hetznercloud` provider:
65
+
66
+ 2.1) With hcloud cli installed and configured
67
+
68
+ $ vagrant up --provider=hetznercloud
69
+
70
+ 2.1) With Token via environment
71
+
72
+ $ export HETZNERCLOUD_TOKEN=xxxxxxxxxxxxxxxxxxxxxxxxxxxx
73
+ $ vagrant up --provider=hetznercloud
74
+
75
+ 2.2) With Token in Vagrantfile
76
+
77
+ See [examples/Vagrantfile](examples/Vagrantfile).
78
+
79
+ **Note: This is not recommended, as this tends to leak credentials in SCM**
80
+
81
+ ## Configurations
82
+
83
+ FIXME: Write proper documentation
84
+
85
+ ## Development
86
+
87
+ To work on the `vagrant-hetznercloud` plugin, clone this repository out, and use
88
+ [Bundler](http://gembundler.com) to get the dependencies:
89
+
90
+ $ bundle
91
+
92
+ If those pass, you're ready to start developing the plugin. You can test
93
+ the plugin without installing it into your Vagrant environment by just
94
+ creating a `Vagrantfile` in the top level of this directory (it is gitignored)
95
+ that uses it, and uses bundler to execute Vagrant:
96
+
97
+ $ bundle exec vagrant up --provider=scaleway
98
+
99
+ For Debugging you can run:
100
+
101
+ $ LANG=C VAGRANT_LOG=debug VAGRANT_DEFAULT_PROVIDER=hetznercloud VAGRANT_HOME=~/.vagrant.develop.d bundle exec -- vagrant up
102
+
103
+ Development is tracked at [Trello](https://trello.com/b/zJx9W0OY/vagrant-hetznercloud)
104
+
105
+ ## Contributing
106
+
107
+ Bug reports and pull requests are welcome on GitHub at https://github.com/elconas/vagrant-hetznercloud.
108
+
109
+ ## License
110
+
111
+ The plugin is available as open source under the terms of the [APACHE-2.0](https://opensource.org/licenses/APACHE-2.0).
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rubocop/rake_task'
3
+
4
+ RuboCop::RakeTask.new(:rubocop)
5
+
6
+ task default: :rubocop
@@ -0,0 +1,3 @@
1
+ {
2
+ "provider": "hetznercloud"
3
+ }
@@ -0,0 +1,63 @@
1
+ # -*- mode: ruby -*-
2
+ # vi: set ft=ruby :
3
+
4
+ # All Vagrant configuration is done below. The "2" in Vagrant.configure
5
+ # configures the configuration version (we support older styles for
6
+ # backwards compatibility). Please don't change it unless you know what
7
+ # you're doing.
8
+ Vagrant.configure('2') do |config|
9
+ # The most common configuration options are documented and commented below.
10
+ # For a complete reference, please see the online documentation at
11
+ # https://docs.vagrantup.com.
12
+
13
+ # Every Vagrant development environment requires a box. You can search for
14
+ # boxes at https://vagrantcloud.com/search.
15
+ config.vm.box = 'elconas/base'
16
+ config.vm.synced_folder '.', '/vagrant', disabled: true
17
+ config.ssh.private_key_path = './keys/testkey2'
18
+ config.vm.provider 'hetznercloud' do |hcloud, override|
19
+
20
+ ## Tokens in Vagrantfiles should be avoided. You can use:
21
+ # - priority1: env var "HETZNERCLCOUD_TOKEN"
22
+ # - priority2: content in ~/.config/hcloud/cli.toml
23
+ # - priority3: hcloud.token in this file (last resort as it tends to leak to git)
24
+ # hcloud.token = "YOUR_TOKEN or set via HETZNERCLCOUD_TOKEN environment variable"
25
+
26
+ ## SSH Key must exist and must match override.ssh.private_key_path
27
+ hcloud.ssh_keys = ['test']
28
+
29
+ ## Select an explicit context in the config file
30
+ ## If not speicified, the default one is used
31
+ # hcloud.active_context = 'non_default_context'
32
+
33
+ ## if you have a multi provider vagrantfile
34
+ # you can also override config.ssh.private_key_path
35
+ # provider specific.
36
+ #override.ssh.private_key_path = './keys/testkey2'
37
+
38
+ end
39
+ config.vm.provision 'shell', inline: <<-SHELL
40
+ yum update -y
41
+ SHELL
42
+
43
+ config.vm.define 'web' do |web|
44
+ config.vm.provider 'hetznercloud' do |hcloud|
45
+ hcloud.name = 'web'
46
+ hcloud.server_type = 'cx11'
47
+ end
48
+ web.vm.provision 'shell', inline: <<-SHELL
49
+ yum install -y httpd
50
+ systemctl start httpd
51
+ SHELL
52
+ end
53
+
54
+ config.vm.define 'db' do |db|
55
+ config.vm.provider 'hetznercloud' do |hcloud|
56
+ hcloud.name = 'db'
57
+ hcloud.server_type = 'cx21'
58
+ end
59
+ db.vm.provision 'shell', inline: <<-SHELL
60
+ yum install -y mariadb
61
+ SHELL
62
+ end
63
+ end
Binary file
@@ -0,0 +1,18 @@
1
+ # rubocop:disable Style/FileName
2
+ require 'pathname'
3
+ require 'vagrant-hetznercloud/plugin'
4
+
5
+ module VagrantPlugins
6
+ module Hetznercloud
7
+ lib_path = Pathname.new(File.expand_path('../vagrant-hetznercloud', __FILE__))
8
+ autoload :Action, lib_path.join('action')
9
+ autoload :Errors, lib_path.join('errors')
10
+
11
+ # This returns the path to the source of this plugin.
12
+ #
13
+ # @return [Pathname]
14
+ def self.source_root
15
+ @source_root ||= Pathname.new(File.expand_path('../../', __FILE__))
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,189 @@
1
+ require 'vagrant/action/builder'
2
+
3
+ module VagrantPlugins
4
+ module Hetznercloud
5
+ module Action
6
+ # Include the built-in modules so we can use them as top-level things.
7
+ include Vagrant::Action::Builtin
8
+
9
+ # This action is called to terminate the remote machine.
10
+ def self.action_destroy
11
+ Vagrant::Action::Builder.new.tap do |b|
12
+ b.use Call, DestroyConfirm do |env, b2|
13
+ if env[:result]
14
+ b2.use ConfigValidate
15
+ b2.use Call, IsCreated do |env2, b3|
16
+ unless env2[:result]
17
+ b3.use MessageNotCreated
18
+ next
19
+ end
20
+
21
+ b3.use ConnectHetznercloud
22
+ b3.use ProvisionerCleanup, :before if defined?(ProvisionerCleanup)
23
+ b3.use DestroyServer
24
+ end
25
+ else
26
+ b2.use MessageWillNotDestroy
27
+ end
28
+ end
29
+ end
30
+ end
31
+
32
+ # This action is called to halt the remote machine.
33
+ def self.action_halt
34
+ Vagrant::Action::Builder.new.tap do |b|
35
+ b.use ConfigValidate
36
+ b.use Call, IsCreated do |env, b2|
37
+ unless env[:result]
38
+ b2.use MessageNotCreated
39
+ next
40
+ end
41
+
42
+ b2.use ConnectHetznercloud
43
+ b2.use StopServer
44
+ end
45
+ end
46
+ end
47
+
48
+ # This action is called when `vagrant provision` is called.
49
+ def self.action_provision
50
+ Vagrant::Action::Builder.new.tap do |b|
51
+ b.use ConfigValidate
52
+ b.use Call, IsCreated do |env, b2|
53
+ unless env[:result]
54
+ b2.use MessageNotCreated
55
+ next
56
+ end
57
+
58
+ b2.use Provision
59
+ end
60
+ end
61
+ end
62
+
63
+ # This action is called to read the SSH info of the machine. The
64
+ # resulting state is expected to be put into the `:machine_ssh_info`
65
+ # key.
66
+ def self.action_read_ssh_info
67
+ Vagrant::Action::Builder.new.tap do |b|
68
+ b.use ConfigValidate
69
+ b.use ConnectHetznercloud
70
+ b.use ReadSSHInfo
71
+ end
72
+ end
73
+
74
+ # This action is called to read the state of the machine. The
75
+ # resulting state is expected to be put into the `:machine_state_id`
76
+ # key.
77
+ def self.action_read_state
78
+ Vagrant::Action::Builder.new.tap do |b|
79
+ b.use ConfigValidate
80
+ b.use ConnectHetznercloud
81
+ b.use ReadState
82
+ end
83
+ end
84
+
85
+ # This action is called to restart the remote machine.
86
+ def self.action_reload
87
+ Vagrant::Action::Builder.new.tap do |b|
88
+ b.use ConfigValidate
89
+ b.use ConnectHetznercloud
90
+ b.use Call, IsCreated do |env1, b1|
91
+ unless env1[:result]
92
+ b1.use MessageNotCreated
93
+ next
94
+ end
95
+
96
+ b1.use action_halt
97
+ b1.use action_up
98
+ end
99
+ end
100
+ end
101
+
102
+ # This action is called to SSH into the machine.
103
+ def self.action_ssh
104
+ Vagrant::Action::Builder.new.tap do |b|
105
+ b.use ConfigValidate
106
+ b.use Call, IsCreated do |env, b2|
107
+ unless env[:result]
108
+ b2.use MessageNotCreated
109
+ next
110
+ end
111
+
112
+ b2.use SSHExec
113
+ end
114
+ end
115
+ end
116
+
117
+ # This action is called to execute a command on the machine via SSH.
118
+ def self.action_ssh_run
119
+ Vagrant::Action::Builder.new.tap do |b|
120
+ b.use ConfigValidate
121
+ b.use Call, IsCreated do |env, b2|
122
+ unless env[:result]
123
+ b2.use MessageNotCreated
124
+ next
125
+ end
126
+
127
+ b2.use SSHRun
128
+ end
129
+ end
130
+ end
131
+
132
+ # This action is called to bring the box up from nothing.
133
+ def self.action_up
134
+ Vagrant::Action::Builder.new.tap do |b|
135
+ b.use HandleBox
136
+ b.use ConfigValidate
137
+ b.use BoxCheckOutdated
138
+ b.use ConnectHetznercloud
139
+ b.use Call, IsCreated do |env1, b1|
140
+ if env1[:result]
141
+ b1.use Call, IsStopped do |env2, b2|
142
+ if env2[:result]
143
+ b2.use Provision
144
+ b2.use SyncedFolders
145
+ b2.use WarnNetworks
146
+ b2.use StartServer
147
+ else
148
+ b2.use MessageAlreadyCreated
149
+ end
150
+ end
151
+ else
152
+ b1.use Provision
153
+ b1.use SyncedFolders
154
+ b1.use WarnNetworks
155
+ b1.use CreateServer
156
+ b1.use StartServer
157
+ end
158
+ end
159
+ end
160
+ end
161
+
162
+ # This action is called to list available images.
163
+ def self.action_list_images
164
+ Vagrant::Action::Builder.new.tap do |b|
165
+ b.use ConnectHetznercloud
166
+ b.use ListImages
167
+ end
168
+ end
169
+
170
+
171
+ # The autoload farm
172
+ action_root = Pathname.new(File.expand_path('../action', __FILE__))
173
+ autoload :ConnectHetznercloud, action_root.join('connect_hetznercloud')
174
+ autoload :CreateServer, action_root.join('create_server')
175
+ autoload :DestroyServer, action_root.join('destroy_server')
176
+ autoload :IsCreated, action_root.join('is_created')
177
+ autoload :IsStopped, action_root.join('is_stopped')
178
+ autoload :ListImages, action_root.join('list_images')
179
+ autoload :MessageAlreadyCreated, action_root.join('message_already_created')
180
+ autoload :MessageNotCreated, action_root.join('message_not_created')
181
+ autoload :MessageWillNotDestroy, action_root.join('message_will_not_destroy')
182
+ autoload :ReadSSHInfo, action_root.join('read_ssh_info')
183
+ autoload :ReadState, action_root.join('read_state')
184
+ autoload :StartServer, action_root.join('start_server')
185
+ autoload :StopServer, action_root.join('stop_server')
186
+ autoload :WarnNetworks, action_root.join('warn_networks')
187
+ end
188
+ end
189
+ end