我将Xilinx Petalinux .run安装程序添加到我的vagrant文件中,如下所示
config.vm.provision "shell", inline: <<-SHELL
/vagrant/petalinux-v2016.2-final-installer.run /opt/pkg
SHELL
安装程序包含多个工具安装,每个工具都需要多个用户输入或交互。 有没有办法在使用shell提示暂停/等待用户输入的配置中实现一种机制? 我已经尝试了流浪的例子:
Vagrant.configure("2") do |config|
config.vm.provision "shell" do |s|
s.inline = "echo $1"
s.args = ["hello, world!"]
end
end
但它没有用。我从win7 PowerShell运行vagrant在VirtualBox上构建Ubuntu / Xenial框
提前感谢!