Vagrant 流浪汉食盐供应:功能;state.highstate“;正在运行

Vagrant 流浪汉食盐供应:功能;state.highstate“;正在运行,vagrant,salt-stack,vagrantfile,Vagrant,Salt Stack,Vagrantfile,当我使用盐来提供我的流浪者箱时,返回以下输出: Calling state.highstate... (this may take a while) local: Data failed to compile: ---------- The function "state.highstate" is running as PID 2998 and was started at with jid req 这意味着我看不到highstate命令的结果。这是我的salt配置文件: config

当我使用盐来提供我的流浪者箱时,返回以下输出:

Calling state.highstate... (this may take a while)
local:
Data failed to compile:
----------
The function "state.highstate" is running as PID 2998 and was started at  with jid req
这意味着我看不到highstate命令的结果。这是我的salt配置文件:

  config.vm.provision :salt do |salt|
  salt.minion_key = "srv/etc/salt/pki/minion/minion.pem"
  salt.minion_pub = "srv/etc/salt/pki/minion/minion.pub"
  salt.minion_config = "srv/etc/salt/minion"
  salt.run_highstate = true
  salt.verbose = true
  salt.colorize = true
  salt.log_level = 'all'

我做错什么了吗?我希望能够看到highstate命令的输出。

我解决了问题

minion配置文件将startup_states:key设置为highstate,因此在minion启动时运行highstate命令。为了解决这个问题,我注释掉了配置中的行,现在一切都正常了