2016-10-31 2 views
0

Ich versuche, den Meister zu installieren Software auf dem Diener, aber es scheint nicht wie es funktioniert. Wenn ich ein debug versuche sieht es wie das Problem ist das folgende:Nicht in der Lage, Software auf Windows 10 Minion

Nicht sicher, wie man es beheben. Für weitere Informationen ist meine Salzmaster-Version 2015.5.10 (Lithium) und meine Minion-Version ist 2015.5.1. Auch die vollständige Debug-Protokoll ist:

[DEBUG ] Reading configuration from /etc/salt/master 
[DEBUG ] Including configuration from '/etc/salt/master.d/master.conf' 
[DEBUG ] Reading configuration from /etc/salt/master.d/master.conf 
[DEBUG ] Using cached minion ID from /etc/salt/minion_id: ECS-141abdb2.ecs.ads.autodesk.com 
[DEBUG ] Missing configuration file: /root/.saltrc 
[DEBUG ] Configuration file path: /etc/salt/master 
[WARNING ] Insecure logging configuration detected! Sensitive data may be logged. 
[DEBUG ] Reading configuration from /etc/salt/master 
[DEBUG ] Including configuration from '/etc/salt/master.d/master.conf' 
[DEBUG ] Reading configuration from /etc/salt/master.d/master.conf 
[DEBUG ] Using cached minion ID from /etc/salt/minion_id: ECS-141abdb2.ecs.ads.autodesk.com 
[DEBUG ] Missing configuration file: /root/.saltrc 
[DEBUG ] MasterEvent PUB socket URI: ipc:///var/run/salt/master/master_event_pub.ipc 
[DEBUG ] MasterEvent PULL socket URI: ipc:///var/run/salt/master/master_event_pull.ipc 
[DEBUG ] Sending event - data = {'_stamp': '2016-10-31T15:49:34.567058'} 
[DEBUG ] LazyLoaded local_cache.get_load 
[DEBUG ] get_iter_returns for jid 20161031084934590375 sent to set(['ds']) will timeout at 08:49:39.5975           53 
[DEBUG ] jid 20161031084934590375 return from ds 
[DEBUG ] LazyLoaded nested.output 

Jede Hilfe wäre sehr dankbar, da ich neu bin auf diese :)

Befehl verwendet wurde:

sudo salt '<minion>' pkg.install 'chrome' 
+0

Sie brauchen keine '.saltrc' für den Benutzer. Es ist etwas wie '.bashrc'. Können Sie angeben, welchen Befehl Sie ausführen, der nicht wie erwartet funktioniert? – dahrens

+0

Hey @dahrens Ich habe den Befehl mit dem Befehl aktualisiert. Ich habe erwartet, dass es die Software installiert. – dwr123123d12

+0

funktioniert das auch nicht: 'sudo salt '' pkg.install chrome' (ohne' '' um Chrome). Wenn dies nicht der Fall ist, informieren Sie uns bitte über das Zielbetriebssystem. – dahrens

Antwort

0

Bei Fenstern Sie brauchen um etwas Magie zu integrieren, damit es richtig funktioniert. Haben Sie die Anweisungen written here befolgt? Eine kurze Zusammenfassung des Dokumentinhalts

# prepare your master to know about the win repos 
salt-run winrepo.update_git_repos 
# tell all connected windows minions to refresh 
salt -G 'os:windows' pkg.refresh_db 
# list available packages 
salt -G 'os:windows' pkg.list_pkgs 
# ask your minion for known chrome versions 
salt '<minion id>' pkg.available_version chrome 
# and finally install it; use version=x.x.x in case of a specific one. 
salt '<minion id>' pkg.install 'chrome' 
Verwandte Themen