1
0
mirror of synced 2025-02-07 07:49:25 +03:00

Correct small error in notes about escaping characters

This commit is contained in:
hwdsl2 2016-01-15 11:05:40 -06:00
parent 79887bb458
commit 9010327a33
2 changed files with 6 additions and 4 deletions

View File

@ -24,8 +24,9 @@ if [ "$(uname)" = "Darwin" ]; then
fi
# Please define your own values for these variables
# IMPORTANT: You must escape all non-alphanumeric characters with a backslash.
# Examples: \ --> \\, " --> \", ' --> \', $ --> \$, ` --> \`, [space] --> \[space]
# IMPORTANT:
# Escape all non-alphanumeric characters with a backslash (or 3 backslashes for \ and ").
# Examples: \ --> \\\\, " --> \\\", ' --> \', $ --> \$, ` --> \`, [space] --> \[space]
IPSEC_PSK=your_very_secure_key
VPN_USER=your_username

View File

@ -23,8 +23,9 @@ if [ "$(uname)" = "Darwin" ]; then
fi
# Please define your own values for these variables
# IMPORTANT: You must escape all non-alphanumeric characters with a backslash.
# Examples: \ --> \\, " --> \", ' --> \', $ --> \$, ` --> \`, [space] --> \[space]
# IMPORTANT:
# Escape all non-alphanumeric characters with a backslash (or 3 backslashes for \ and ").
# Examples: \ --> \\\\, " --> \\\", ' --> \', $ --> \$, ` --> \`, [space] --> \[space]
IPSEC_PSK=your_very_secure_key
VPN_USER=your_username