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:
Mike Place 2016-07-13 10:02:58 -06:00
parent 4e56d28993
commit 5f5d7193b0
5 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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