File tree 2 files changed +48
-0
lines changed
2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -44,3 +44,5 @@ cscope*
44
44
45
45
# version
46
46
version /version_gen.go
47
+
48
+ .vagrant-state
Original file line number Diff line number Diff line change 3
3
4
4
require 'fileutils'
5
5
6
+ BEGIN {
7
+ STATEFILE = ".vagrant-state"
8
+
9
+ if File . exist? ( STATEFILE )
10
+ File . open ( STATEFILE ) . read . lines . map { |x | x . split ( "=" , 2 ) } . each { |x , y | ENV [ x ] = y }
11
+ end
12
+ }
13
+
6
14
# netplugin_synced_gopath="/opt/golang"
7
15
go_version = ENV [ "GO_VERSION" ] || "1.7.3"
8
16
gopath_folder = "/opt/gopath"
@@ -104,6 +112,44 @@ echo "export https_proxy='$2'" >> /etc/profile.d/envvar.sh
104
112
source /etc/profile.d/envvar.sh
105
113
SCRIPT
106
114
115
+ module VagrantPlugins
116
+ module EnvState
117
+ class Plugin < Vagrant . plugin ( '2' )
118
+ name 'EnvState'
119
+
120
+ description <<-DESC
121
+ Environment State tracker; saves the environment at `vagrant up` time and
122
+ restores it for all other commands, and removes it at `vagrant destroy`
123
+ time.
124
+ DESC
125
+
126
+ def self . up_hook ( arg )
127
+ unless File . exist? ( STATEFILE ) # prevent it from writing more than once.
128
+ f = File . open ( STATEFILE , "w" )
129
+ ENV . each do |x , y |
130
+ f . puts "%s=%s" % [ x , y ]
131
+ end
132
+ f . close
133
+ end
134
+ end
135
+
136
+ def self . destroy_hook ( arg )
137
+ if File . exist? ( STATEFILE ) # prevent it from trying to delete more than once.
138
+ File . unlink ( STATEFILE )
139
+ end
140
+ end
141
+
142
+ action_hook ( :EnvState , :machine_action_up ) do |hook |
143
+ hook . prepend ( method ( :up_hook ) )
144
+ end
145
+
146
+ action_hook ( :EnvState , :machine_action_destroy ) do |hook |
147
+ hook . prepend ( method ( :destroy_hook ) )
148
+ end
149
+ end
150
+ end
151
+ end
152
+
107
153
108
154
VAGRANTFILE_API_VERSION = "2"
109
155
Vagrant . configure ( VAGRANTFILE_API_VERSION ) do |config |
You can’t perform that action at this time.
0 commit comments