- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在创建 vm 时,我不会从 salt 那里得到任何响应,除非你处于冗长模式,此时你的屏幕上会出现闪烁的废话音调,它并不代表很好的信息,如 salt-call
确实如此。
这是你在 vagrant up web
之后得到的结果
192:vagrant-starter holms$ vagrant up web
Bringing machine 'web' up with 'virtualbox' provider...
==> web: Importing base box 'debian80'...
==> web: Matching MAC address for NAT networking...
==> web: Setting the name of the VM: vagrant-starter_web_1410407135596_15907
==> web: Clearing any previously set forwarded ports...
==> web: Clearing any previously set network interfaces...
==> web: Preparing network interfaces based on configuration...
web: Adapter 1: nat
==> web: Forwarding ports...
web: 80 => 9999 (adapter 1)
web: 22 => 2222 (adapter 1)
==> web: Running 'pre-boot' VM customizations...
==> web: Booting VM...
==> web: Waiting for machine to boot. This may take a few minutes...
web: SSH address: 127.0.0.1:2222
web: SSH username: vagrant
web: SSH auth method: private key
web: Warning: Connection timeout. Retrying...
==> web: Machine booted and ready!
==> web: Checking for guest additions in VM...
==> web: Mounting shared folders...
web: /vagrant => /Users/holms/Dropbox/Dev/vagrant-starter
web: /srv/salt => /Users/holms/Dropbox/Dev/vagrant-starter/repo/salt
==> web: Running provisioner: salt...
Copying salt minion config to vm.
Checking if salt-minion is installed
salt-minion was not found.
Checking if salt-call is installed
salt-call was not found.
Bootstrapping Salt... (this may take a while)
Salt successfully configured and installed!
run_overstate set to false. Not running state.overstate.
Calling state.highstate... (this may take a while)
我的 Vagrantfile 非常大,因为它甚至有外部配置。相关部分在这里:
97 # check if saltstack being used
98 unless opts[:salt].nil?
99
100 config.vm.synced_folder "repo/salt/", "/srv/salt/"
101
102 node.vm.provision "salt" do |salt|
103 salt.minion_config = "repo/minion"
104 salt.run_highstate = true
105 salt.colorize = true
106 salt.log_level = 'all'
107 #salt.verbose = true
108 #opts[:salt].each do |minion|
109 #end
110 end
111 end
我希望看到的是这个
我看到的是这样的:
最佳答案
这个是我自己搜索的,这里没有答案,我来补充一下。在 Vagrantfile 中你需要添加(或取消注释)
salt.verbose = true
,所以你最终会得到这样的结果:
config.vm.provision :salt do |salt|
salt.minion_config = "repo/minion"
salt.run_highstate = true
salt.colorize = true
salt.log_level = "info"
salt.verbose = true
end
关于ubuntu - 带有 salt 供应器的 Vagrant 不显示任何输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25778820/
菜鸟问题。我正在尝试为我的 Vagrantfile 编写一个 shell 脚本,在服务器环境构建后加载数据库导出的自包含文件。目标是构建服务器,安装 mariadb,然后加载一个自包含的 sql 文件
这是我的 Vagrantfile 的一部分: config.vm.provision :shell, :privileged => false, :path => "bootstrap.sh"
我正在使用带有对 Elasticsearch 的响应式支持的 spring-data: @Repository public interface UserDocumentRepository exte
我想在Vagrant机器上运行docker镜像。 我的Vagrantfile很紧张: VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFI
尝试从旧版 Godeps 工作流迁移到官方支持的 Golang vendor 解决方案。 场景: Repo A=== \ ========> Repo C (s
我正在尝试使用 WHMCS API/配置模块在新的 WHM/cPanel 客户端完成托管订单后自动创建 mysql 数据库。 看起来应该很简单,但我在文档中找不到任何相关信息。 WHMCS 模块连接到
我正在努力让 Berkshelf 从我们的私有(private) BitBucket (git) 存储库中下载公司食谱。这是在 Windows 8.1 主机上。 我找到了this question并尝
我正在尝试在 Windows 8.1 上设置 Vagrant 进行 Web 开发。我已经遇到这个问题了undefined method “cheffish” for nil:NilClass ,所以我
我是一名优秀的程序员,十分优秀!