diff options
author | Judd Vinet <judd@archlinux.org> | 2003-10-10 01:10:18 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2003-10-10 01:10:18 +0000 |
commit | 7f4117b05f9e4730657779ec7d4b3b08ba12616c (patch) | |
tree | 7ae9206800c5f9495e8203f49a8ec8489536c6aa /rc.multi | |
parent | be8b6f59470b8779c3d4e10b3045507920931896 (diff) |
added color to rc messages and fixed bug #168
Diffstat (limited to 'rc.multi')
-rwxr-xr-x | rc.multi | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |