aboutsummaryrefslogtreecommitdiff
path: root/rc.multi
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2003-10-10 01:10:18 +0000
committerJudd Vinet <judd@archlinux.org>2003-10-10 01:10:18 +0000
commit7f4117b05f9e4730657779ec7d4b3b08ba12616c (patch)
tree7ae9206800c5f9495e8203f49a8ec8489536c6aa /rc.multi
parentbe8b6f59470b8779c3d4e10b3045507920931896 (diff)
downloadinitscripts-7f4117b05f9e4730657779ec7d4b3b08ba12616c.tar.xz
added color to rc messages and fixed bug #168
Diffstat (limited to 'rc.multi')
-rwxr-xr-xrc.multi8
1 files changed, 4 insertions, 4 deletions
diff --git a/rc.multi b/rc.multi
index 5e803b1..e33226e 100755
--- a/rc.multi
+++ b/rc.multi
@@ -8,13 +8,13 @@
# Start daemons
for daemon in "${DAEMONS[@]}"; do
- if [[ `echo $daemon | grep '^[^\!]' | wc -l` -eq 1 ]]; then
- /etc/rc.d/$daemon start
- fi
+ if [[ `echo $daemon | grep '^[^\!]' | wc -l` -eq 1 ]]; then
+ /etc/rc.d/$daemon start
+ fi
done
if [ -x /etc/rc.local ]; then
- /etc/rc.local
+ /etc/rc.local
fi
# End of file