aboutsummaryrefslogtreecommitdiff
path: root/network
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2012-07-12 02:15:28 +0200
committerTom Gundersen <teg@jklm.no>2012-07-12 02:15:28 +0200
commit046d35bac04022eab343e9e6e40a3056c5e653ad (patch)
treeb26a2d23796c4c8eb473d796154575050a689720 /network
parent3779f7002c8417a77745e1e02273ed5e19ed75b7 (diff)
parentc2f7b97924e2b5341cea667fbd1a2802e9cb8cd5 (diff)
downloadinitscripts-046d35bac04022eab343e9e6e40a3056c5e653ad.tar.xz
Merge branch 'spelling'
Conflicts: rc.sysinit Had to manually fix up a conflict in some comments.
Diffstat (limited to 'network')
-rwxr-xr-xnetwork10
1 files changed, 5 insertions, 5 deletions
diff --git a/network b/network
index 322082c..494a11f 100755
--- a/network
+++ b/network
@@ -235,15 +235,15 @@ case "$1" in
# deprecation check
need_legacy && deprecated
if ! ck_daemon network; then
- echo "Network is already running. Try 'network restart'"
+ echo "Network is already running. Try 'network restart'"
exit
fi
- stat_busy "Starting Network"
+ stat_busy "Starting network"
error=0
if need_legacy; then
# bring up bridge interfaces
bridge_up
- # bring up ethernet interfaces
+ # bring up Ethernet interfaces
for ifline in ${INTERFACES[@]}; do
if [[ $ifline = ${ifline#!} ]]; then
ifup $ifline || error=1
@@ -271,11 +271,11 @@ case "$1" in
# deprecation check
need_legacy && deprecated
if [[ $NETWORK_PERSIST =~ yes|YES && $RUNLEVEL == [06] ]]; then
- status "Skipping Network Shutdown" true
+ status "Skipping network shutdown" true
exit 0
fi
- stat_busy "Stopping Network"
+ stat_busy "Stopping network"
rm_daemon network
error=0
if need_legacy; then