d36374c428
We try to unconditionally execute /etc/rc.d/* files, even if they're not executable - an easy way of temproarily disabling a service. When this happens, we get a permission denied error on boot. This change only tries to run execulable startup scripts. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9607
9 lines
134 B
Bash
Executable File
9 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
{
|
|
for i in /etc/rc.d/$1*; do
|
|
[ -x $i ] && $i $2 2>&1
|
|
done
|
|
} | logger -s -p 6 -t '' &
|