2015-04-02 58 views
1

我在使用流浪者條款安裝軟件時遇到問題。我只是試圖安裝混帳,但我得到這個錯誤:流浪漢規定不起作用

==> default: stdin: is not a tty 
==> default: git-email git-gui gitk gitweb diffutils-doc 
==> default: The following NEW packages will be installed: 
==> default: git git-man liberror-perl patch 
==> default: 0 upgraded, 4 newly installed, 0 to remove and 179 not upgraded. 
==> default: Need to get 6,730 kB of archives. 
==> default: After this operation, 15.4 MB of additional disk space will be used. 
==> default: Do you want to continue [Y/n]? 
==> default: Abort. 
The SSH command responded with a non-zero exit status. Vagrant 
assumes that this means the command failed. The output for this command 
should be in the log above. Please read the output to determine what 
went wrong. 

我Vargantfile看起來如此:

Vagrant.configure(2) do |config| 
config.vm.box = "hashicorp/precise32" 
config.vm.provision "shell", path: "bootstrap.sh" 
end 

和我bootstrap.sh正好包含:

#!/usr/bin/env bash 
sudo apt-get update 
sudo apt-get install git 

我試了一下mac和windows,並得到相同的錯誤,我使用的是流浪漢1.7.2

回答

7

您需要添加-y標誌從您的引導文件安裝的東西,否則系統將等待確認

sudo apt-get -y install git