Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
410 views
in Technique[技术] by (71.8m points)

returning a value from a provision script to vagrant

Is it possible to return a value from a provision script back to vagrant?

response = config.vm.provision( "shell", path: "script.sh" )

if response = 'ok'
   do_something
end

I couldn't see anything in the vagrant docs describing how this could be done.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As far as I am aware I don't think it is possible to return a value like that.

You can however easily get around this by having your provisioning script write a file in the /vagrant directory of the guest machine.

You can then use Ruby to process this file which will be in the same folder as your Vagrantfile.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...