summaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-10-30 11:37:49 +0000
committerRoy Marples <roy@marples.name>2007-10-30 11:37:49 +0000
commit7d2c240c2584c4cefaebcff86441d31b927293ed (patch)
tree546b5a91977efeaca08b79a39b4b2366ee396ed2 /sh
parentc9fe3ade4c2d736a708d335bcace3b0cd3bee168 (diff)
downloadopenrc-7d2c240c2584c4cefaebcff86441d31b927293ed.tar.gz
openrc-7d2c240c2584c4cefaebcff86441d31b927293ed.tar.bz2
openrc-7d2c240c2584c4cefaebcff86441d31b927293ed.tar.xz
Embed newlines in __IFS to save our identing
Diffstat (limited to 'sh')
-rwxr-xr-xsh/net.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/sh/net.sh b/sh/net.sh
index 427c1fa..e2de054 100755
--- a/sh/net.sh
+++ b/sh/net.sh
@@ -10,6 +10,10 @@ _config_vars="config routes"
description="Configures network interfaces."
+# Handy var so we don't have to embed new lines everywhere for array splitting
+__IFS="
+"
+
depend() {
local IFACE=${SVCNAME#*.}
local IFVAR=$(echo -n "${IFACE}" | sed -e 's/[^[:alnum:]]/_/g')
@@ -57,6 +61,7 @@ _get_array() {
eval _a=\$$1
printf "%s" "${_a}"
+ printf "\n"
[ -n "${_a}" ]
}
@@ -218,9 +223,6 @@ _gen_module_list() {
eval PROGRAM=\$${MODULE}_program
eval PROGRAM_START=\$${MODULE}_program_start
eval PROGRAM_STOP=\$${MODULE}_program_stop
- #for x in ${PROGRAM} ; do
- # [ -x "${x}" ] || continue 2
- #done
eval PROVIDE=\$${MODULE}_provide
echo "module_${i}='${MODULE}'" >> "${MODULESLIST}"
echo "module_${i}_program='${PROGRAM}'" >> "${MODULESLIST}"
@@ -359,8 +361,7 @@ ${config}"
# We store our config in an array like vars
# so modules can influence it
config_index=0
- local IFS="
-"
+ local IFS="$__IFS"
for cmd in ${config}; do
eval config_${config_index}="'${cmd}'"
config_index=$((${config_index} + 1))
@@ -370,7 +371,6 @@ ${config}"
config_index=0
for cmd in ${fallback}; do
- eval fallback_${config_index}="'${cmd}'"
config_index=$((${config_index} + 1))
done
# Terminate the list
@@ -498,8 +498,7 @@ start() {
${routes}"
hidefirstroute=true
fi
- local IFS="
-"
+ local IFS="$__IFS"
for cmd in ${routes}; do
unset IFS
if ${first}; then
@@ -529,6 +528,7 @@ ${routes}"
eend $?
eoutdent
done
+ unset IFS
for module in ${MODULES} ; do
if type "${module}_post_start" >/dev/null 2>/dev/null ; then