salt-stack - show Started and Duration details in results -
i'm running same salt states on vagrant , on cloud server. on vagrant started , duration details show, on cloud server don't.
i'm running masterless on v2014.7.5 (helium)
here's vagrant config:
vagrant.configure("2") |config| config.vm.box = "trusty64" config.vm.network "private_network", ip: "192.168.33.11" config.vm.synced_folder "saltmount/", "/srv/saltmount/" config.vm.provision "salt" |salt| salt.minion_config = "minion" salt.run_highstate = true salt.colorize = true salt.log_level = 'info' salt.verbose = true end config.vm.provider "virtualbox" |v| v.memory = 1024 end end
here minion file:
master: localhost file_client: local failhard: true state_verbose: true file_roots: base: - /srv/saltmount/statefiles pillar_roots: base: - /srv/saltmount/pillars
and command i'm running:
salt-call state.highstate -l info
what missing duration , started on cloud highstate?
(this followup question to: salt-stack highstate - find slow states )
Comments
Post a Comment