whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/examples/var_service/fw/run b/examples/var_service/fw/run
index f02f53d..b8c028a 100755
--- a/examples/var_service/fw/run
+++ b/examples/var_service/fw/run
@@ -49,8 +49,8 @@
### ... Local Process...
doit() {
- echo "# $*"
- "$@"
+ echo "# $*"
+ "$@"
}
#exec >/dev/null
@@ -88,25 +88,25 @@
echo; echo "* Resetting address and routing info"
doit ip a f dev lo
i=0; while test "${if[$i]}"; do
- doit ip a f dev "${if[$i]}"
- doit ip r f dev "${if[$i]}" root 0/0
+ doit ip a f dev "${if[$i]}"
+ doit ip r f dev "${if[$i]}" root 0/0
let i++; done
echo; echo "* Configuring addresses"
doit ip a a dev lo 127.0.0.1/8 scope host
doit ip a a dev lo ::1/128 scope host
i=0; while test "${if[$i]}"; do
- if test "${ipmask[$i]}"; then
- doit ip a a dev "${if[$i]}" "${ipmask[$i]}" brd +
- doit ip l set dev "${if[$i]}" up
- fi
+ if test "${ipmask[$i]}"; then
+ doit ip a a dev "${if[$i]}" "${ipmask[$i]}" brd +
+ doit ip l set dev "${if[$i]}" up
+ fi
let i++; done
echo; echo "* Configuring routes"
i=0; while test "${if[$i]}"; do
- if test "${net[$i]}" && test "${gw[$i]}"; then
- doit ip r a "${net[$i]}" via "${gw[$i]}"
- fi
+ if test "${net[$i]}" && test "${gw[$i]}"; then
+ doit ip r a "${net[$i]}" via "${gw[$i]}"
+ fi
let i++; done
echo; echo "* Recreating /etc/* files reflecting new network configuration:"