vagrant-packet 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 54345a29d00e0ba6175077a0df28bb6307ac83c98474ca7873b77b915fba0f76
4
- data.tar.gz: 08fbd0d81c72ef5d243aa2685d33e0b0a323177e371b65246989a80a541afc4c
3
+ metadata.gz: 4d9bb728d50978abf13726fc2b7be25323b6db6203f845c9c6bf05fe11096449
4
+ data.tar.gz: aafff717ee24f71f54aff126291e83f072c34c20a38b9f5817b6f53b50347ac1
5
5
  SHA512:
6
- metadata.gz: 940e954d3fe18adf21b2366f8c7070470ebf473ac234290ad72eb5fbb89d0c891faf3ef63476b6a623ac8e6ca973e709245b54b389649c7bef2ff8510b8b54e1
7
- data.tar.gz: 972564922fd09b88ee047f6621a057fea679a5e25efd94f26b7dd64192fd7ea98adab7fe166c45e9495f19bfd5571f4e3551cafe7fef85198d2c873b4379b0cb
6
+ metadata.gz: 4f060b93f0dc4ac024fe3239f5ca593a8494fd0f7550f2310a22094e7c71e487b0027ad4a7d13563581b631c0d0e2e646718db62c0df7f186992a766881cdb2b
7
+ data.tar.gz: 49e4e69c8bbae478676aa8fc8bbee9d37a65848e5dbeca96315d47fa5729d419397bb014b976a4196d65c4343f3f75ac2552b627a9de41b0a6b777ccd7231806
data/README.md CHANGED
@@ -7,11 +7,17 @@ Based heavily (almost completely) on the [Vagrant-AWS](https://github.com/mitche
7
7
  - [Packet](https://packet.net) provisions bare metal machines. It's cool.
8
8
  - Since they're bare metal, provision time is somewhat slower (5-10min)
9
9
  - Once provisioned, I suggest `vagrant halt` and `vagrant up` for faster performance.
10
+ - Keeping machines around *does cost money* so running `vagrant destroy` once your short-term needs are met is a good idea.
10
11
  - You need to add your SSH Key within the Packet.net portal. Vagrant will not handle this for you. (Much like the [Vagrant-Google](https://github.com/mitchellh/vagrant-google) plugin.)
11
12
  - Your synced folders must use the rsync option (seen below) or it won't work.
12
13
  - There are some Packet-specific options required in the config. The example explains how to find and select the correct options.
13
14
 
14
- ## Example Vagrantfile:
15
+ ## Installation and use:
16
+ To install, run `vagrant plugin install vagrant-packet`
17
+
18
+ You can then use the packet provider in Vagrant.
19
+
20
+ Example Vagrantfile:
15
21
  ```
16
22
  Vagrant.configure("2") do |config|
17
23
  config.vm.box = "packet.box"
@@ -52,6 +58,8 @@ Vagrant.configure("2") do |config|
52
58
  end
53
59
  ```
54
60
 
61
+ With this vagrant file you can then run `vagrant up`
62
+
55
63
  ## Development
56
64
  To work on the `vagrant-packet` plugin, clone this repository out, and use
57
65
  [Bundler](http://gembundler.com) to get the dependencies:
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'fog'
4
3
  require 'fog-packet'
5
4
  require 'log4r'
6
5
  require 'pp'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module VagrantPlugins
4
4
  module Packet
5
- VERSION = '0.1.3'
5
+ VERSION = '0.1.4'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-packet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeffrey Sica