mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 03:32:25 +02:00
init: check permissions on rc.d files
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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9607 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
0d9004633d
commit
fadaa82e81
@ -3,6 +3,6 @@
|
||||
|
||||
{
|
||||
for i in /etc/rc.d/$1*; do
|
||||
$i $2 2>&1
|
||||
[ -x $i ] && $i $2 2>&1
|
||||
done
|
||||
} | logger -s -p 6 -t '' &
|
||||
|
Loading…
Reference in New Issue
Block a user