ssh_config: also sendenv LANGUAGE

This commit is contained in:
Aminda Suomalainen 2015-09-06 07:30:11 +03:00
parent 6fc4b6a29b
commit 90c86466dd
2 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@ Host *
# Always try public key authentication
PubkeyAuthentication yes
# Send LANG and LC_* environment variables to the server.
SendEnv LANG LC_*
# Send LANG, LANGUAGE and LC_* environment variables to the server.
SendEnv LANG LANGUAGE LC_*
# If the server doesn't reply in "three" pings, connection is dead.
# Defaults to 3 anyway, but I add it here for clearity and

View File

@ -23,8 +23,8 @@ Host *
# Always try public key authentication
PubkeyAuthentication yes
# Send LANG and LC_* environment variables to the server.
SendEnv LANG LC_*
# Send LANG, LANGUAGE and LC_* environment variables to the server.
SendEnv LANG LANGUAGE LC_*
# If the server doesn't reply in "three" pings, connection is dead.
# Defaults to 3 anyway, but I add it here for clearity and