--- elwix/config/etc/default/rc.init 2017/10/08 09:54:58 1.6.2.5 +++ elwix/config/etc/default/rc.init 2017/10/09 22:22:27 1.6.2.6 @@ -2,7 +2,7 @@ # # Boot startup script for elwix :) # -# $Id: rc.init,v 1.6.2.5 2017/10/08 09:54:58 misho Exp $ +# $Id: rc.init,v 1.6.2.6 2017/10/09 22:22:27 misho Exp $ stty status '^T' @@ -147,7 +147,7 @@ service() { echo "Starting distribution static services:" | tee -a $BOOTLOG for i in /etc/rc.d/*.run; do - if [ -x $i ]; then + if [ -x "$i" ]; then $i fi done @@ -157,7 +157,7 @@ service() echo "Starting distribution services:" | tee -a $BOOTLOG for i in /etc/rc.S/*.run; do - if [ -x $i ]; then + if [ -x "$i" ]; then $i fi done