# pydshrc

[CORE]
# Directory to store group files in.
group_dir = /usr/local/etc/pydsh/groups
# Default host list for the -a option.
allgroup_filename = all
# Connection Timeout (var is not enabled yet, still hard coded at 5)
conn_timeout = 10

[SHELL]
# Default shell protocol to use RSH, SSH or Telnet.
proto = ssh
# Set maximum number of threads to spawn
max_threads = 64

[COPY]
# Default copy protocol to use SCP or RCP.
proto = scp
# Set maximum number of threads to spawn for scp sessions
max_threads = 32

[SSH]
# SSH Host key checking
# Methods:   Ask      For uncertain or failed host key tests, prompt for action.
#                     A ==  Yes to this one and any others that follow.
#                     Y ==  Yes to this one
#                     N ==  No to this one
#                     S ==  Strict, no to this one and any others that follow.
#            Accept   Automatically remove old keys and install new ones
#            Strict   Automatically reject failed keys and remove host from
#                     hostlist.
ssh_hostkey = ask

# Config Directory for SSH files.
# Default $HOME/.ssh
ssh_config_dir = $home/.ssh/

# Location of users SSH known hosts file.
# Default $HOME/.ssh/known_hosts
ssh_knownhosts_file = $ssh_config_dir/known_hosts

[DEBUG]
# Enable automatic display of errors in pdb 
use_pdb = yes
