Between the OPTION, the = and the VALUE are no spaces.
Rows starting with a # are considered as comments.
You should not comment out any OPTION If you like to use default settings simply do not specify a VALUE.
Example: LOG=/var/opt/edrc/log
Default: LOG=var/log
Example: EDRC_USER=edrc
Default: EDRC_USER=edrc
This setting is of relevance if the user-id of the starting user is different from the local user used (-l localuser option) to connect to the remote system.
Example: START_USER=eroot
Default: START_USER=root
Specifies the timeout (in seconds) used when connecting to the SSH server, instead of using the default system TCP timeout.
This value is used only when the target is down or really unreachable, not when it refuses the connection.
Example: CONNECTION_TIMEOUT=2
Default: CONNECTION_TIMEOUT=4
The chosen command must be available on all target systems.
If it is needed to set the PROBE_COMMAND dynamically the environment variables $REMOTEUSER and/or $TARGET can be used to do so.
The $REMOTEUSER variable contains the user name as given on the command line in lower case; the $TARGET variable contains the target system as given on the command line also in lower case.
Example:
case $TARGET in
acme007) PROBE_COMMAND="uname -n" ;;
alpha60) PROBE_COMMAND="sysname" ;;
joshua) PROBE_COMMAND="identity" ;;
hal9000) PROBE_COMMAND="avatar" ;;
bomb20) PROBE_COMMAND="WHO" ;;
*) PROBE_COMMAND="hostname" ;;
esac
Example: PROBE_COMMAND=hostname
Default: PROBE_COMMAND=hostname
This is free software; see edrc/doc/COPYING for copying conditions. There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.