34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
|
From 4e3833f6a28c52dc4c1d4e8dd24d419af10c4dc6 Mon Sep 17 00:00:00 2001
|
||
|
From: Harald Hoyer <harald@hoyer.xyz>
|
||
|
Date: Mon, 9 Oct 2017 12:59:29 +0200
|
||
|
Subject: [PATCH] Merge pull request #285 from rldleblanc/fix-typos
|
||
|
|
||
|
Fix a couple of typos.
|
||
|
---
|
||
|
modules.d/40network/parse-bond.sh | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/modules.d/40network/parse-bond.sh b/modules.d/40network/parse-bond.sh
|
||
|
index 48e548b9..c35c81d6 100755
|
||
|
--- a/modules.d/40network/parse-bond.sh
|
||
|
+++ b/modules.d/40network/parse-bond.sh
|
||
|
@@ -1,7 +1,7 @@
|
||
|
#!/bin/sh
|
||
|
#
|
||
|
# Format:
|
||
|
-# bond=<bondname>[:<bondslaves>:[:<options>[:<mtu>]]]
|
||
|
+# bond=<bondname>[:<bondslaves>[:<options>[:<mtu>]]]
|
||
|
#
|
||
|
# bondslaves is a comma-separated list of physical (ethernet) interfaces
|
||
|
# options is a comma-separated list on bonding options (modinfo bonding for details) in format compatible with initscripts
|
||
|
@@ -12,7 +12,7 @@
|
||
|
# if the mtu is specified, it will be set on the bond master
|
||
|
#
|
||
|
|
||
|
-# We translate list of slaves to space-separated here to mwke it easier to loop over them in ifup
|
||
|
+# We translate list of slaves to space-separated here to make it easier to loop over them in ifup
|
||
|
# Ditto for bonding options
|
||
|
parsebond() {
|
||
|
local v=${1}:
|
||
|
|