Skip to content

Commit c54a6fa

Browse files
author
Erik Hollensbe
committed
Vagrantfile,.gitignore: Maintain state between vagrant runs.
Signed-off-by: Erik Hollensbe <[email protected]>
1 parent 8a8eae9 commit c54a6fa

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ cscope*
4444

4545
# version
4646
version/version_gen.go
47+
48+
.vagrant-state

Vagrantfile

+46
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33

44
require 'fileutils'
55

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+
614
# netplugin_synced_gopath="/opt/golang"
715
go_version = ENV["GO_VERSION"] || "1.7.3"
816
gopath_folder="/opt/gopath"
@@ -104,6 +112,44 @@ echo "export https_proxy='$2'" >> /etc/profile.d/envvar.sh
104112
source /etc/profile.d/envvar.sh
105113
SCRIPT
106114

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+
107153

108154
VAGRANTFILE_API_VERSION = "2"
109155
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

0 commit comments

Comments
 (0)