当我尝试在我的 Freifunk gluon 节点上进行配置时,就像在其他 debian 机器上一样:
Vagrant.configure("2") do |config|
config.vm.provision "shell", path: "bootstrap-node.sh"
end
然后我得到错误:
The configured shell (config.ssh.shell) is invalid and unable
如何为 Busybox 配置配置ash?
当我尝试在我的 Freifunk gluon 节点上进行配置时,就像在其他 debian 机器上一样:
Vagrant.configure("2") do |config|
config.vm.provision "shell", path: "bootstrap-node.sh"
end
然后我得到错误:
The configured shell (config.ssh.shell) is invalid and unable
如何为 Busybox 配置配置ash?
我的busybox 不包含bash,它是为具有ust 4MB ram 的小型路由器而设计的。
你可以配置它
config.ssh.shell = 'ash'
这会将灰定义为外壳。请参阅:http ://docs.vagrantup.com/v2/vagrantfile/ssh_settings.html
这是我的问题的解决方案,尽管我现在有一个后续问题,这是另一个问题:vagrant ash: sudo: not found