vagrant-guest-openwrt 0.0.1
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.
- checksums.yaml +7 -0
- data/.gitattributes +22 -0
- data/.gitignore +220 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +54 -0
- data/History.txt +4 -0
- data/Manifest.txt +7 -0
- data/README.md +45 -0
- data/Rakefile +9 -0
- data/Vagrantfile +16 -0
- data/boxes/adam.opentwrt-aa.box +0 -0
- data/lib/openwrt/vagrant.rb +7 -0
- data/lib/openwrt/vagrant/cap/change_host_name.rb +11 -0
- data/lib/openwrt/vagrant/cap/configure_networks.rb +18 -0
- data/lib/openwrt/vagrant/cap/halt.rb +16 -0
- data/lib/openwrt/vagrant/guest.rb +11 -0
- data/lib/openwrt/vagrant/plugin.rb +28 -0
- data/lib/openwrt/version.rb +5 -0
- data/lib/vagrant-guest-openwrt.rb +1 -0
- data/vagrant-guest-openwrt.gemspec +22 -0
- data/vagrant.private.key +27 -0
- metadata +92 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 065cdb326953afc335bebb015f186395e89edde7
|
|
4
|
+
data.tar.gz: 47b6fb3daf72a2ba8a86bf9f02bacf274cbfa42d
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 1576a07035076b1a02b2639d7aa371244e2d3cec6711f86ef6ae5dfdfa7ec79d55b6f66c9bb2ec82bc882d98ca81fef3985ac11a53f74c3292d9a27fbc1b8464
|
|
7
|
+
data.tar.gz: ac8dc089701ff4b11255ab8b527f920d19b97b65dfcfa9d6e35b7d48a98ad20a78f34463cdd7c3ac478ce91b70a05e1a517ab6afcf2b1adf590369cb95591b4f
|
data/.gitattributes
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Auto detect text files and perform LF normalization
|
|
2
|
+
* text=auto
|
|
3
|
+
|
|
4
|
+
# Custom for Visual Studio
|
|
5
|
+
*.cs diff=csharp
|
|
6
|
+
*.sln merge=union
|
|
7
|
+
*.csproj merge=union
|
|
8
|
+
*.vbproj merge=union
|
|
9
|
+
*.fsproj merge=union
|
|
10
|
+
*.dbproj merge=union
|
|
11
|
+
|
|
12
|
+
# Standard to msysgit
|
|
13
|
+
*.doc diff=astextplain
|
|
14
|
+
*.DOC diff=astextplain
|
|
15
|
+
*.docx diff=astextplain
|
|
16
|
+
*.DOCX diff=astextplain
|
|
17
|
+
*.dot diff=astextplain
|
|
18
|
+
*.DOT diff=astextplain
|
|
19
|
+
*.pdf diff=astextplain
|
|
20
|
+
*.PDF diff=astextplain
|
|
21
|
+
*.rtf diff=astextplain
|
|
22
|
+
*.RTF diff=astextplain
|
data/.gitignore
ADDED
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
.vagrant/
|
|
2
|
+
vagrant-guest-qnx/pkg/
|
|
3
|
+
|
|
4
|
+
#################
|
|
5
|
+
## Eclipse
|
|
6
|
+
#################
|
|
7
|
+
|
|
8
|
+
*.pydevproject
|
|
9
|
+
.project
|
|
10
|
+
.metadata
|
|
11
|
+
bin/
|
|
12
|
+
tmp/
|
|
13
|
+
*.tmp
|
|
14
|
+
*.bak
|
|
15
|
+
*.swp
|
|
16
|
+
*~.nib
|
|
17
|
+
local.properties
|
|
18
|
+
.classpath
|
|
19
|
+
.settings/
|
|
20
|
+
.loadpath
|
|
21
|
+
|
|
22
|
+
# External tool builders
|
|
23
|
+
.externalToolBuilders/
|
|
24
|
+
|
|
25
|
+
# Locally stored "Eclipse launch configurations"
|
|
26
|
+
*.launch
|
|
27
|
+
|
|
28
|
+
# CDT-specific
|
|
29
|
+
.cproject
|
|
30
|
+
|
|
31
|
+
# PDT-specific
|
|
32
|
+
.buildpath
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
#################
|
|
36
|
+
## Visual Studio
|
|
37
|
+
#################
|
|
38
|
+
|
|
39
|
+
## Ignore Visual Studio temporary files, build results, and
|
|
40
|
+
## files generated by popular Visual Studio add-ons.
|
|
41
|
+
|
|
42
|
+
# User-specific files
|
|
43
|
+
*.suo
|
|
44
|
+
*.user
|
|
45
|
+
*.sln.docstates
|
|
46
|
+
|
|
47
|
+
# Build results
|
|
48
|
+
|
|
49
|
+
[Dd]ebug/
|
|
50
|
+
[Rr]elease/
|
|
51
|
+
x64/
|
|
52
|
+
build/
|
|
53
|
+
[Bb]in/
|
|
54
|
+
[Oo]bj/
|
|
55
|
+
|
|
56
|
+
# MSTest test Results
|
|
57
|
+
[Tt]est[Rr]esult*/
|
|
58
|
+
[Bb]uild[Ll]og.*
|
|
59
|
+
|
|
60
|
+
*_i.c
|
|
61
|
+
*_p.c
|
|
62
|
+
*.ilk
|
|
63
|
+
*.meta
|
|
64
|
+
*.obj
|
|
65
|
+
*.pch
|
|
66
|
+
*.pdb
|
|
67
|
+
*.pgc
|
|
68
|
+
*.pgd
|
|
69
|
+
*.rsp
|
|
70
|
+
*.sbr
|
|
71
|
+
*.tlb
|
|
72
|
+
*.tli
|
|
73
|
+
*.tlh
|
|
74
|
+
*.tmp
|
|
75
|
+
*.tmp_proj
|
|
76
|
+
*.log
|
|
77
|
+
*.vspscc
|
|
78
|
+
*.vssscc
|
|
79
|
+
.builds
|
|
80
|
+
*.pidb
|
|
81
|
+
*.log
|
|
82
|
+
*.scc
|
|
83
|
+
|
|
84
|
+
# Visual C++ cache files
|
|
85
|
+
ipch/
|
|
86
|
+
*.aps
|
|
87
|
+
*.ncb
|
|
88
|
+
*.opensdf
|
|
89
|
+
*.sdf
|
|
90
|
+
*.cachefile
|
|
91
|
+
|
|
92
|
+
# Visual Studio profiler
|
|
93
|
+
*.psess
|
|
94
|
+
*.vsp
|
|
95
|
+
*.vspx
|
|
96
|
+
|
|
97
|
+
# Guidance Automation Toolkit
|
|
98
|
+
*.gpState
|
|
99
|
+
|
|
100
|
+
# ReSharper is a .NET coding add-in
|
|
101
|
+
_ReSharper*/
|
|
102
|
+
*.[Rr]e[Ss]harper
|
|
103
|
+
|
|
104
|
+
# TeamCity is a build add-in
|
|
105
|
+
_TeamCity*
|
|
106
|
+
|
|
107
|
+
# DotCover is a Code Coverage Tool
|
|
108
|
+
*.dotCover
|
|
109
|
+
|
|
110
|
+
# NCrunch
|
|
111
|
+
*.ncrunch*
|
|
112
|
+
.*crunch*.local.xml
|
|
113
|
+
|
|
114
|
+
# Installshield output folder
|
|
115
|
+
[Ee]xpress/
|
|
116
|
+
|
|
117
|
+
# DocProject is a documentation generator add-in
|
|
118
|
+
DocProject/buildhelp/
|
|
119
|
+
DocProject/Help/*.HxT
|
|
120
|
+
DocProject/Help/*.HxC
|
|
121
|
+
DocProject/Help/*.hhc
|
|
122
|
+
DocProject/Help/*.hhk
|
|
123
|
+
DocProject/Help/*.hhp
|
|
124
|
+
DocProject/Help/Html2
|
|
125
|
+
DocProject/Help/html
|
|
126
|
+
|
|
127
|
+
# Click-Once directory
|
|
128
|
+
publish/
|
|
129
|
+
|
|
130
|
+
# Publish Web Output
|
|
131
|
+
*.Publish.xml
|
|
132
|
+
*.pubxml
|
|
133
|
+
|
|
134
|
+
# NuGet Packages Directory
|
|
135
|
+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
|
|
136
|
+
#packages/
|
|
137
|
+
|
|
138
|
+
# Windows Azure Build Output
|
|
139
|
+
csx
|
|
140
|
+
*.build.csdef
|
|
141
|
+
|
|
142
|
+
# Windows Store app package directory
|
|
143
|
+
AppPackages/
|
|
144
|
+
|
|
145
|
+
# Others
|
|
146
|
+
sql/
|
|
147
|
+
*.Cache
|
|
148
|
+
ClientBin/
|
|
149
|
+
[Ss]tyle[Cc]op.*
|
|
150
|
+
~$*
|
|
151
|
+
*~
|
|
152
|
+
*.dbmdl
|
|
153
|
+
*.[Pp]ublish.xml
|
|
154
|
+
*.pfx
|
|
155
|
+
*.publishsettings
|
|
156
|
+
|
|
157
|
+
# RIA/Silverlight projects
|
|
158
|
+
Generated_Code/
|
|
159
|
+
|
|
160
|
+
# Backup & report files from converting an old project file to a newer
|
|
161
|
+
# Visual Studio version. Backup files are not needed, because we have git ;-)
|
|
162
|
+
_UpgradeReport_Files/
|
|
163
|
+
Backup*/
|
|
164
|
+
UpgradeLog*.XML
|
|
165
|
+
UpgradeLog*.htm
|
|
166
|
+
|
|
167
|
+
# SQL Server files
|
|
168
|
+
App_Data/*.mdf
|
|
169
|
+
App_Data/*.ldf
|
|
170
|
+
|
|
171
|
+
#############
|
|
172
|
+
## Windows detritus
|
|
173
|
+
#############
|
|
174
|
+
|
|
175
|
+
# Windows image file caches
|
|
176
|
+
Thumbs.db
|
|
177
|
+
ehthumbs.db
|
|
178
|
+
|
|
179
|
+
# Folder config file
|
|
180
|
+
Desktop.ini
|
|
181
|
+
|
|
182
|
+
# Recycle Bin used on file shares
|
|
183
|
+
$RECYCLE.BIN/
|
|
184
|
+
|
|
185
|
+
# Mac crap
|
|
186
|
+
.DS_Store
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
#############
|
|
190
|
+
## Python
|
|
191
|
+
#############
|
|
192
|
+
|
|
193
|
+
*.py[co]
|
|
194
|
+
|
|
195
|
+
# Packages
|
|
196
|
+
*.egg
|
|
197
|
+
*.egg-info
|
|
198
|
+
dist/
|
|
199
|
+
build/
|
|
200
|
+
eggs/
|
|
201
|
+
parts/
|
|
202
|
+
var/
|
|
203
|
+
sdist/
|
|
204
|
+
develop-eggs/
|
|
205
|
+
.installed.cfg
|
|
206
|
+
|
|
207
|
+
# Installer logs
|
|
208
|
+
pip-log.txt
|
|
209
|
+
|
|
210
|
+
# Unit test / coverage reports
|
|
211
|
+
.coverage
|
|
212
|
+
.tox
|
|
213
|
+
|
|
214
|
+
#Translations
|
|
215
|
+
*.mo
|
|
216
|
+
|
|
217
|
+
#Mr Developer
|
|
218
|
+
.mr.developer.cfg
|
|
219
|
+
|
|
220
|
+
*.gem
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
GIT
|
|
2
|
+
remote: https://github.com/mitchellh/vagrant.git
|
|
3
|
+
revision: 6977e93ba98fd19112b1fed74dafb8619f581984
|
|
4
|
+
tag: v1.5.1
|
|
5
|
+
specs:
|
|
6
|
+
vagrant (1.5.1)
|
|
7
|
+
bundler (~> 1.5.2)
|
|
8
|
+
childprocess (~> 0.5.0)
|
|
9
|
+
erubis (~> 2.7.0)
|
|
10
|
+
i18n (~> 0.6.0)
|
|
11
|
+
listen (~> 2.4.0)
|
|
12
|
+
log4r (~> 1.1.9, < 1.1.11)
|
|
13
|
+
net-scp (~> 1.1.0)
|
|
14
|
+
net-ssh (>= 2.6.6, < 2.8.0)
|
|
15
|
+
rb-kqueue (~> 0.2.0)
|
|
16
|
+
wdm (~> 0.1.0)
|
|
17
|
+
|
|
18
|
+
PATH
|
|
19
|
+
remote: .
|
|
20
|
+
specs:
|
|
21
|
+
vagrant-guest-openwrt (0.0.1)
|
|
22
|
+
|
|
23
|
+
GEM
|
|
24
|
+
remote: https://rubygems.org/
|
|
25
|
+
specs:
|
|
26
|
+
celluloid (0.15.2)
|
|
27
|
+
timers (~> 1.1.0)
|
|
28
|
+
childprocess (0.5.2)
|
|
29
|
+
ffi (~> 1.0, >= 1.0.11)
|
|
30
|
+
erubis (2.7.0)
|
|
31
|
+
ffi (1.9.3-x86-mingw32)
|
|
32
|
+
i18n (0.6.9)
|
|
33
|
+
listen (2.4.1)
|
|
34
|
+
celluloid (>= 0.15.2)
|
|
35
|
+
rb-fsevent (>= 0.9.3)
|
|
36
|
+
rb-inotify (>= 0.9)
|
|
37
|
+
log4r (1.1.10)
|
|
38
|
+
net-scp (1.1.2)
|
|
39
|
+
net-ssh (>= 2.6.5)
|
|
40
|
+
net-ssh (2.7.0)
|
|
41
|
+
rb-fsevent (0.9.4)
|
|
42
|
+
rb-inotify (0.9.3)
|
|
43
|
+
ffi (>= 0.5.0)
|
|
44
|
+
rb-kqueue (0.2.2)
|
|
45
|
+
ffi (>= 0.5.0)
|
|
46
|
+
timers (1.1.0)
|
|
47
|
+
wdm (0.1.0)
|
|
48
|
+
|
|
49
|
+
PLATFORMS
|
|
50
|
+
x86-mingw32
|
|
51
|
+
|
|
52
|
+
DEPENDENCIES
|
|
53
|
+
vagrant!
|
|
54
|
+
vagrant-guest-openwrt!
|
data/History.txt
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# vagrant-guest-openwrt
|
|
2
|
+
|
|
3
|
+
* http://github.com/thejuan/vagrant-openwrt
|
|
4
|
+
|
|
5
|
+
## DESCRIPTION:
|
|
6
|
+
|
|
7
|
+
A plugin to allow vagrant to recognize instances of OpenWrt
|
|
8
|
+
|
|
9
|
+
Currently:
|
|
10
|
+
|
|
11
|
+
* halt
|
|
12
|
+
* change_hostname (stub)
|
|
13
|
+
* configure_networks (stub)
|
|
14
|
+
|
|
15
|
+
== INSTALL:
|
|
16
|
+
|
|
17
|
+
* vagrant plugin install vagrant-guest-openwrt
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
== LICENSE:
|
|
21
|
+
|
|
22
|
+
(The MIT License)
|
|
23
|
+
|
|
24
|
+
Copyright (c) 2014 Adam Mils
|
|
25
|
+
Inspired by https://github.com/damphyr/vagrant-qnx/tree/master/vagrant-guest-qnx
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
29
|
+
a copy of this software and associated documentation files (the
|
|
30
|
+
'Software'), to deal in the Software without restriction, including
|
|
31
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
32
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
33
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
34
|
+
the following conditions:
|
|
35
|
+
|
|
36
|
+
The above copyright notice and this permission notice shall be
|
|
37
|
+
included in all copies or substantial portions of the Software.
|
|
38
|
+
|
|
39
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
40
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
41
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
42
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
43
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
44
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
45
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
data/Vagrantfile
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- mode: ruby -*-
|
|
2
|
+
# vi: set ft=ruby :
|
|
3
|
+
|
|
4
|
+
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
|
5
|
+
VAGRANTFILE_API_VERSION = "2"
|
|
6
|
+
|
|
7
|
+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
8
|
+
config.vm.box = "adam/openwrt-aa"
|
|
9
|
+
config.vm.guest = "openwrt"
|
|
10
|
+
config.ssh.shell = "ash" # bash is the default, openwrt uses ash
|
|
11
|
+
config.ssh.private_key_path = "vagrant.private.key"
|
|
12
|
+
config.vm.synced_folder ".", "/vagrant", :disabled => true # no guest additions of vmware tools. No sharing
|
|
13
|
+
|
|
14
|
+
#You can configure networks here for the Virtuliser, however the plugin has not implemented it for OpenWRT yet.
|
|
15
|
+
#You will need to edit /etc/config/network manually
|
|
16
|
+
end
|
|
Binary file
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module VagrantPlugins
|
|
2
|
+
module GuestOpenWrt
|
|
3
|
+
module Cap
|
|
4
|
+
class ConfigureNetworks
|
|
5
|
+
def self.configure_networks(machine,networks)
|
|
6
|
+
machine.ui.warn("networking configuration not implemented in OpenWrt guest")
|
|
7
|
+
#networks.each do |network|
|
|
8
|
+
# if network[:type].to_sym == :static
|
|
9
|
+
# machine.communicate.execute("su -c - \"ifconfig wm#{network[:interface]} inet #{network[:ip]} netmask #{network[:netmask]}\"")
|
|
10
|
+
# elsif network[:type].to_sym == :dhcp
|
|
11
|
+
# machine.communicate.execute("su -c - \"dhcp.client -i wm#{network[:interface]}\"")
|
|
12
|
+
# end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module VagrantPlugins
|
|
2
|
+
module GuestOpenWrt
|
|
3
|
+
module Cap
|
|
4
|
+
class Halt
|
|
5
|
+
def self.halt(machine)
|
|
6
|
+
begin
|
|
7
|
+
machine.communicate.execute("sudo poweroff")
|
|
8
|
+
rescue IOError
|
|
9
|
+
# Ignore, this probably means connection closed because it
|
|
10
|
+
# shut down.
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
module VagrantPlugins
|
|
2
|
+
module GuestOpenWrt
|
|
3
|
+
class Plugin < Vagrant.plugin("2")
|
|
4
|
+
name "OpenWrt Guest."
|
|
5
|
+
description "OpenWrt support."
|
|
6
|
+
|
|
7
|
+
guest("openwrt", "linux") do
|
|
8
|
+
require File.expand_path("../guest", __FILE__)
|
|
9
|
+
Guest
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
guest_capability("openwrt", "change_host_name") do
|
|
13
|
+
require_relative "cap/change_host_name"
|
|
14
|
+
Cap::ChangeHostName
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
guest_capability("openwrt", "halt") do
|
|
18
|
+
require_relative "cap/halt"
|
|
19
|
+
Cap::Halt
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
guest_capability("openwrt", "configure_networks") do
|
|
23
|
+
require_relative "cap/configure_networks"
|
|
24
|
+
Cap::ConfigureNetworks
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require_relative 'openwrt/vagrant'
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'openwrt/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "vagrant-guest-openwrt"
|
|
8
|
+
spec.version = VagrantOpenWrt::Version::STRING
|
|
9
|
+
spec.authors = ["Adam Mills"]
|
|
10
|
+
spec.email = ["sales@chambills.com"]
|
|
11
|
+
spec.summary = %q{A vagrant plugin for OpenWrt guests.}
|
|
12
|
+
spec.homepage = "http://github.com/thejuan/vagrant-openwrt"
|
|
13
|
+
spec.license = "MIT"
|
|
14
|
+
|
|
15
|
+
spec.files = `git ls-files -z`.split("\x0")
|
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
17
|
+
spec.test_files = spec.files.grep(%r{^(openwrt|spec|features)/})
|
|
18
|
+
spec.require_paths = ["lib"]
|
|
19
|
+
|
|
20
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
|
21
|
+
spec.add_development_dependency "rake"
|
|
22
|
+
end
|
data/vagrant.private.key
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
-----BEGIN RSA PRIVATE KEY-----
|
|
2
|
+
MIIEpQIBAAKCAQEA1Ns5LMrxHnPXbdS5BrPw2Ss81369o0886/LrVCYz0JnNVr+c
|
|
3
|
+
jQlh0aHVegxyvr0oOpYXBPbtM5NtE/dkieRn96hC92cT+RewbkgAyVxtE0HKsFhc
|
|
4
|
+
QF/gICIyg/iZ5JyVGBdzRpdQcmiOin9HyLSJTePxj4zSQteaoM/WUwsMKw90ZxP+
|
|
5
|
+
tFOMoIeB41tVagpCbtDFShrjGzJIk/MFm3AykXO9q5hf8S0TeULMUZDfHUdb1zbH
|
|
6
|
+
DEd5tmeWuZx77J1gOR6SJXI4pfXWHWpmxdVlgXZotkv8kfshqJAunSi+zITeKVjV
|
|
7
|
+
TD8uHCF10wOgPExUuVH8PKKqJM3s24G9ukNYmwIDAQABAoIBAFpAicGgWxRaceGz
|
|
8
|
+
7LAW4+xxFN8acjYohuBUo8uOVzH/xL0fibWTYNKOGAIj/RM7CS+uLByCxpizzfBF
|
|
9
|
+
WW/OVPcBdUOJhUJ89OYNyaeXdPhRUSvsi1EQVevKFDk406fHbMBGUS6BQi8Afk/j
|
|
10
|
+
IADN69oG6InBX/XPjVTaSzny2Tn4EX1qfTdvXsjDjcHmoKew/YLNM+4rVXjw82SJ
|
|
11
|
+
glxW3VzOQ9tHoVGV2PDCQXQ9+LDd4sNSajzJy7Lw2UTkOIKT81GAYAT0Z+Nzsf5U
|
|
12
|
+
5UE5Wd69b2sNvQLzB3g11nODdSECBUwwwHXiATKmQSc9V3bgde5JvxzR9etZxRHt
|
|
13
|
+
lBMHVWECgYEA8nzIkbJKwXLODuUgo5w3idK4Cmzhbuq1RnK1nD/CkBtLvWYx/aHQ
|
|
14
|
+
XLr7eEeR+dVcrYmCvdPQZ1wQgftGKwiG4pll15pcv23p5FI2RVPNBRW/LSA9aTLE
|
|
15
|
+
9L5RpXlpn4JGqaxFaCqQGM05QK0COkNYycMugr05Z9DgrIB7LSCeD80CgYEA4Le8
|
|
16
|
+
a/7JPjl1ShzPxJOMJDcHFxtJj5EWfMEgKZb/BYTAoSVYQ8lhs8VvXUP3eueHcjB4
|
|
17
|
+
Uu3E28VGbDXdw+mJmBGz7JLt2f1Plq5JSV8tmptVOkFKT0QW3f0GpVrIlj0rPh9+
|
|
18
|
+
ZancRTUwxJfsjYw+RKAh82mDGlVBmSGNKTqmkgcCgYEAjhDFgXavjX6xctCSusg/
|
|
19
|
+
UaP+5zy7Jryjz85M0Goal0smqKRDDZHL/UgfJGzp/TEfxxwVWRnLs4KguUZ56aRp
|
|
20
|
+
QkEVBagORqkiqv3vhdZ++0euZcXJtORlt+3477WeSDGPLMEdONYW7jDuJhI2h+QF
|
|
21
|
+
FNAhY79w7n3V47qyb9H4SNECgYEAwdA2hr59O1m7O2yWFelcGXAMgXVbgKOWTYsT
|
|
22
|
+
/krpMQ1KRrI66lwqFC7Y2gvgyvQd8fK0FHJWM2Z2UqYy2uH1dl7uW8BtvHGpz0AK
|
|
23
|
+
nWmln48RdukQ+kSzpEqzDLK8BjhDr5TiIzTZcidqJGUT9RFcMzwZjCMYnAGkTjqN
|
|
24
|
+
0V1whMkCgYEAq8arfwydvSKR2r42cvMnUdkmjzY+2laKm20ECTXPm0nLSRPHYloj
|
|
25
|
+
w+vRi5cM2NpCCgk5GKdgNIPNWKzVvWA2OCpG28JusfjDbQft35SlwQf5v3k7bAya
|
|
26
|
+
AbNolZs6Hq36MbNwto/AytMS5yNCCqr6O7Lz7MC1BAaI0O5U5RXRLUA=
|
|
27
|
+
-----END RSA PRIVATE KEY-----
|
metadata
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: vagrant-guest-openwrt
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Adam Mills
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-03-29 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.5'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ~>
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.5'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description:
|
|
42
|
+
email:
|
|
43
|
+
- sales@chambills.com
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- .gitattributes
|
|
49
|
+
- .gitignore
|
|
50
|
+
- Gemfile
|
|
51
|
+
- Gemfile.lock
|
|
52
|
+
- History.txt
|
|
53
|
+
- Manifest.txt
|
|
54
|
+
- README.md
|
|
55
|
+
- Rakefile
|
|
56
|
+
- Vagrantfile
|
|
57
|
+
- boxes/adam.opentwrt-aa.box
|
|
58
|
+
- lib/openwrt/vagrant.rb
|
|
59
|
+
- lib/openwrt/vagrant/cap/change_host_name.rb
|
|
60
|
+
- lib/openwrt/vagrant/cap/configure_networks.rb
|
|
61
|
+
- lib/openwrt/vagrant/cap/halt.rb
|
|
62
|
+
- lib/openwrt/vagrant/guest.rb
|
|
63
|
+
- lib/openwrt/vagrant/plugin.rb
|
|
64
|
+
- lib/openwrt/version.rb
|
|
65
|
+
- lib/vagrant-guest-openwrt.rb
|
|
66
|
+
- vagrant-guest-openwrt.gemspec
|
|
67
|
+
- vagrant.private.key
|
|
68
|
+
homepage: http://github.com/thejuan/vagrant-openwrt
|
|
69
|
+
licenses:
|
|
70
|
+
- MIT
|
|
71
|
+
metadata: {}
|
|
72
|
+
post_install_message:
|
|
73
|
+
rdoc_options: []
|
|
74
|
+
require_paths:
|
|
75
|
+
- lib
|
|
76
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - '>='
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '0'
|
|
81
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
|
+
requirements:
|
|
83
|
+
- - '>='
|
|
84
|
+
- !ruby/object:Gem::Version
|
|
85
|
+
version: '0'
|
|
86
|
+
requirements: []
|
|
87
|
+
rubyforge_project:
|
|
88
|
+
rubygems_version: 2.0.14
|
|
89
|
+
signing_key:
|
|
90
|
+
specification_version: 4
|
|
91
|
+
summary: A vagrant plugin for OpenWrt guests.
|
|
92
|
+
test_files: []
|