diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2013-03-02 16:51:22 +0100 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2013-03-02 16:51:22 +0100 |
commit | 730157d12fd24000a649868518d540b47eb864d2 (patch) | |
tree | 537162ebeff74bcc167b923b136d3077e8fe9aeb | |
parent | 3f59fd8d7da6bc908ff5381ead6e9ebd96ebaf60 (diff) | |
download | netctl-730157d12fd24000a649868518d540b47eb864d2.tar.gz netctl-730157d12fd24000a649868518d540b47eb864d2.tar.xz |
Fix special quoting in examples
-rw-r--r-- | docs/examples/wireless-wep | 2 | ||||
-rw-r--r-- | docs/examples/wireless-wpa | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/docs/examples/wireless-wep b/docs/examples/wireless-wep index e881e25..afbd3e3 100644 --- a/docs/examples/wireless-wep +++ b/docs/examples/wireless-wep @@ -3,7 +3,7 @@ Interface=wlan0 Connection=wireless Security=wep ESSID='MyNetwork' -# Prepend hexadecimal keys with \" +# Prepend \" to hexadecimal keys Key=\"1234567890abcdef IP=dhcp # Uncomment this if your ssid is hidden diff --git a/docs/examples/wireless-wpa b/docs/examples/wireless-wpa index 5b8f4ba..bb9fe36 100644 --- a/docs/examples/wireless-wpa +++ b/docs/examples/wireless-wpa @@ -7,7 +7,8 @@ IP=dhcp ESSID='MyNetwork' # Prepend hexadecimal keys with \" -# If your key starts with ", write it as '"""<key>"' +# If your key starts with ", write it as '""<key>"' +# See also: the section on special quoting rules in netctl.profile(5) Key='WirelessKey' # Uncomment this if your ssid is hidden #Hidden=yes |