diff options
author | James Rayner <james@archlinux.org> | 2010-02-21 07:06:34 +0100 |
---|---|---|
committer | James Rayner <james@archlinux.org> | 2010-02-21 07:06:34 +0100 |
commit | 63e1e4c2155c17cea7ed80e83d5feae3a0e44fa5 (patch) | |
tree | 9db5354b18ffb45c020e051fe63056fc62ede6ab /examples/ethernet-iproute | |
parent | 781798501379645e0df2e280cc786ba37a2d61c9 (diff) | |
download | netctl-63e1e4c2155c17cea7ed80e83d5feae3a0e44fa5.tar.gz netctl-63e1e4c2155c17cea7ed80e83d5feae3a0e44fa5.tar.xz |
Modify examples to prevent quoting issues as illustrated by FS#18405
Diffstat (limited to 'examples/ethernet-iproute')
-rw-r--r-- | examples/ethernet-iproute | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/ethernet-iproute b/examples/ethernet-iproute index 16d88b5..d22dd17 100644 --- a/examples/ethernet-iproute +++ b/examples/ethernet-iproute @@ -1,7 +1,7 @@ -CONNECTION="ethernet" -DESCRIPTION="A more versatile static ethernet connection using iproute" -INTERFACE="eth0" -IP="static" +CONNECTION='ethernet' +DESCRIPTION='A more versatile static ethernet connection using iproute' +INTERFACE='eth0' +IP='static' # Any valid iproute command can be placed in this array -IPCFG=("addr add dev eth0 192.168.1.23/24 brd +" "route add default via 192.168.1.1") -DNS=("192.168.1.1") +IPCFG=('addr add dev eth0 192.168.1.23/24 brd +' 'route add default via 192.168.1.1') +DNS=('192.168.1.1') |