gpt4 book ai didi

vagrant - 如何在 "vagrant destroy"上运行 Vagrant 任务?

转载 作者:行者123 更新时间:2023-12-02 20:56:32 26 4
gpt4 key购买 nike

我正在运行 Vagrant width Virtualbox,我想知道是否有办法在销毁机器时执行 vagrant 任务(vagrant destroy)?就像当您在配置上运行任务时一样:

config.vm.provision "shell" do |s|,
s.inline: "echo Hello, World"
end

提前谢谢您!

最佳答案

就像乔恩·斯特林在评论中所说的那样。 Vagrant triggers是你有点令人困惑的问题的答案。无论如何,使用触发器您可以在销毁发生之前和之后添加触发器。

例如:

Vagrant.configure("2") do |config|
# Your existing Vagrant configuration
config.trigger.before :destroy do
run "rm -Rf tmp/*"
end
end

关于vagrant - 如何在 "vagrant destroy"上运行 Vagrant 任务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40087032/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com