diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-07-14 18:06:00 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-07-14 18:06:00 -0300 |
commit | 97232dd346b6e959675def22596d034100d6e91b (patch) | |
tree | f6f6eb1b945ac0a7c467277852fad4bd144a024d /network | |
parent | 8c091e9d59baa808a7853e3fa7a570ee94b9375d (diff) | |
parent | 046d35bac04022eab343e9e6e40a3056c5e653ad (diff) |
Merge branch 'master' of git://projects.archlinux.org/initscripts2012.07.14
Conflicts:
PKGBUILD
rc.sysinit
Diffstat (limited to 'network')
-rwxr-xr-x | network | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |