diff options
| author | Martin Cracauer <cracauer@FreeBSD.org> | 1999-04-02 09:35:34 +0000 |
|---|---|---|
| committer | Martin Cracauer <cracauer@FreeBSD.org> | 1999-04-02 09:35:34 +0000 |
| commit | 65089737f40947b31c34ee98b094927325db0851 (patch) | |
| tree | 0dea834023318722d7d85663b212cadf7baa1153 | |
| parent | 2870f7a83c9a1708c6959c533921d84015569877 (diff) | |
Notes
| -rw-r--r-- | etc/rc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 . |
