Break lines to be < 80 chars.

Submitted by:	BDE
This commit is contained in:
Martin Cracauer 1999-04-02 09:35:34 +00:00
parent 2870f7a83c
commit 65089737f4
1 changed files with 3 additions and 2 deletions

5
etc/rc
View File

@ -1,5 +1,5 @@
#!/bin/sh
# $Id: rc,v 1.185 1999/04/01 13:30:29 cracauer Exp $
# $Id: rc,v 1.186 1999/04/02 07:15:43 grog Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@ -390,7 +390,8 @@ if [ "X${local_startup}" != X"NO" ]; then
echo -n 'Local package initialization:'
for dir in ${local_startup}; do
[ -d ${dir} ] && for script in ${dir}/*.sh; do
[ -x ${script} ] && (set -T ; trap 'exit 1' 2 ; ${script} start)
[ -x ${script} ] && \
(set -T ; trap 'exit 1' 2 ; ${script} start)
done
done
echo .