vagrant-rekey-ssh 0.1.3 → 0.1.4
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.
- data/lib/vagrant-rekey-ssh/plugin.rb +1 -0
- data/lib/vagrant-rekey-ssh/version.rb +1 -1
- metadata +60 -46
- checksums.yaml +0 -15
@@ -23,6 +23,7 @@ module VagrantPlugins
|
|
23
23
|
hook.before(Vagrant::Action::Builtin::ConfigValidate, ActionSSHInfo)
|
24
24
|
hook.before(Vagrant::Action::Builtin::GracefulHalt, ActionSSHInfo)
|
25
25
|
hook.before(Vagrant::Action::Builtin::SSHExec, ActionSSHInfo)
|
26
|
+
hook.before(Vagrant::Action::Builtin::SSHRun, ActionSSHInfo)
|
26
27
|
|
27
28
|
hook.after(Vagrant::Action::Builtin::Provision, ActionSecureBox)
|
28
29
|
end
|
metadata
CHANGED
@@ -1,50 +1,57 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-rekey-ssh
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 4
|
9
|
+
version: 0.1.4
|
5
10
|
platform: ruby
|
6
|
-
authors:
|
11
|
+
authors:
|
7
12
|
- Dustin Spicuzza
|
8
13
|
autorequire:
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
16
|
+
|
17
|
+
date: 2014-01-09 00:00:00 -05:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
14
21
|
name: bundler
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ~>
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '1.3'
|
20
|
-
type: :development
|
21
22
|
prerelease: false
|
22
|
-
|
23
|
-
requirements:
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
24
25
|
- - ~>
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
|
27
|
-
-
|
28
|
-
|
29
|
-
|
30
|
-
requirements:
|
31
|
-
- - ! '>='
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 1
|
29
|
+
- 3
|
30
|
+
version: "1.3"
|
34
31
|
type: :development
|
32
|
+
version_requirements: *id001
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rake
|
35
35
|
prerelease: false
|
36
|
-
|
37
|
-
requirements:
|
38
|
-
- -
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
|
36
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
segments:
|
41
|
+
- 0
|
42
|
+
version: "0"
|
43
|
+
type: :development
|
44
|
+
version_requirements: *id002
|
41
45
|
description: Automatically secure vagrant boxes with a randomly generated SSH key
|
42
|
-
email:
|
46
|
+
email:
|
43
47
|
- dustin@virtualroadside.com
|
44
48
|
executables: []
|
49
|
+
|
45
50
|
extensions: []
|
51
|
+
|
46
52
|
extra_rdoc_files: []
|
47
|
-
|
53
|
+
|
54
|
+
files:
|
48
55
|
- .gitignore
|
49
56
|
- Gemfile
|
50
57
|
- LICENSE.txt
|
@@ -60,28 +67,35 @@ files:
|
|
60
67
|
- lib/vagrant-rekey-ssh/version.rb
|
61
68
|
- locales/en.yml
|
62
69
|
- vagrant-rekey-ssh.gemspec
|
70
|
+
has_rdoc: true
|
63
71
|
homepage: https://github.com/virtuald/vagrant-rekey-ssh.git
|
64
|
-
licenses:
|
72
|
+
licenses:
|
65
73
|
- MIT
|
66
|
-
metadata: {}
|
67
74
|
post_install_message:
|
68
75
|
rdoc_options: []
|
69
|
-
|
76
|
+
|
77
|
+
require_paths:
|
70
78
|
- lib
|
71
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- -
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
segments:
|
84
|
+
- 0
|
85
|
+
version: "0"
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
segments:
|
91
|
+
- 0
|
92
|
+
version: "0"
|
81
93
|
requirements: []
|
94
|
+
|
82
95
|
rubyforge_project:
|
83
|
-
rubygems_version:
|
96
|
+
rubygems_version: 1.3.6
|
84
97
|
signing_key:
|
85
|
-
specification_version:
|
98
|
+
specification_version: 3
|
86
99
|
summary: Automatically secure vagrant boxes with a randomly generated SSH key
|
87
100
|
test_files: []
|
101
|
+
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
ZjNkMTYxOTliZDNiN2ZlMDU0ZTBjNDIwZDM2ZTdjMDRjNzEzOWRjMQ==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
NzFkMTljMTRhMmEwYzgyYjQ2YjMwYTI0Y2QzZDMxMmZmY2JjMTU1OQ==
|
7
|
-
SHA512:
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
MjlhMzQ2NzAzOWRhZjUzMGI1ZjM1MjMxNmNiYzRjODMwZTE1NDJlZmNlMmVl
|
10
|
-
ZDUyYmMwNGEwYWNmNmJkNjYxYzkyMGZhNGI1OGE1ZmZlNjFlN2JiZDM1MDhi
|
11
|
-
MDlmOTA2OWRmYTg3MWNkZGJmODI5M2UyM2EwZDBkZDk2ZTQ0ZDE=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MTRjMDlhZTI0ZDExNTVkZDI1M2YzZTM2MTU4M2I5Yzk0Y2VlNmNhMGI1MThl
|
14
|
-
M2ZkM2U4Zjk5ODE1NDI2OTU4NzE0OWYyNDYyZjIxM2VlYTcxYjVmZWUwMmY5
|
15
|
-
NTI5YjEwYWNlZjNlZmMyYzBmZmQyMDU0NWEwYzMwNzZjMWRkZDk=
|