17 lines
224 B

#!/bin/sh
. /etc/init.d/globals
case $1 in
start)
if [ -e /var/etc/rc.local ]; then
/var/etc/rc.local
elif [ -e /etc/rc.local ]; then
/etc/rc.local
fi
;;
*)
echo "[${BASENAME}] Usage: $0 {start}"
;;
esac