mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
Add interface to all configs
This got removed during the attempt to make the tests run on Windows. I added them everywhere even though that's not strictly necessary. Without these set on the master and sub_master, Windows will throw erorrs because the networking stack will decide that anything that's bound to 0.0.0.0 represents an extestential threat to any socket that attempts to *connect* to one of those ports. (For...reasons.)
This commit is contained in:
parent
4e56d28993
commit
5f5d7193b0
@ -1,6 +1,7 @@
|
||||
# Master Settings
|
||||
# Connects to syndic_master via syndic
|
||||
id: master
|
||||
interface: 127.0.0.1
|
||||
publish_port: 64505
|
||||
ret_port: 64506
|
||||
worker_threads: 3
|
||||
|
@ -2,6 +2,7 @@
|
||||
# Connects to master
|
||||
master: localhost
|
||||
master_port: 64506
|
||||
interface: 127.0.0.1
|
||||
tcp_pub_port: 64510
|
||||
tcp_pull_port: 64511
|
||||
sock_dir: minion_sock
|
||||
|
@ -1,6 +1,7 @@
|
||||
# basic config
|
||||
# Connects to master
|
||||
master: localhost
|
||||
interface: 127.0.0.1
|
||||
master_port: 64506
|
||||
tcp_pub_port: 64520
|
||||
tcp_pull_port: 64521
|
||||
|
@ -1,5 +1,6 @@
|
||||
# Syndic Settings
|
||||
id: syndic
|
||||
interface: 127.0.0.1
|
||||
syndic_master: localhost
|
||||
syndic_master_port: 54506
|
||||
syndic_log_file: syndic.log
|
||||
|
@ -1,6 +1,7 @@
|
||||
# Master Settings
|
||||
# This is the Master of Masters
|
||||
id: syndic_master
|
||||
interface: 127.0.0.1
|
||||
publish_port: 54505
|
||||
ret_port: 54506
|
||||
worker_threads: 3
|
||||
|
Loading…
Reference in New Issue
Block a user