diff options
| -rw-r--r-- | .bash/vars.bash | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/.bash/vars.bash b/.bash/vars.bash index dcb7fb2..cb124be 100644 --- a/.bash/vars.bash +++ b/.bash/vars.bash @@ -12,6 +12,8 @@ SSHKEYS=( "${SSHHOME}/id_ed25519" "${SSHHOME}/id_rsa" )  # 2. SSH environment file  export SSHENVFILE="${HOME}/.ssh/sshenv"  # 3. Hosts on which ssh-agent should run, FQDN. Array. +# Typically, "hosts" will equal your workstations. See ssh_config(5) (esp. ForwardAgent) +# Interpreted by fgrep / grep -F.  SSHAGH=( "riesling.example.com" "schorle.example.com" )  SSHAGH+=( "woschd.example.com" )  export SSHAGH | 
