#!/bin/sh
while [ 1 ]
do
if [ ! -e /tmpfs/ipcam.pid ]
then
sleep 3
else
sleep 15
break
fi
done
for initscript in /bin/vs/autostartup/after/*
if [ -x $initscript ] ;
echo "[RCS]: $initscript"
$initscript &