#!/bin/sh
# chkconfig: 2345 98 02
### BEGIN INIT INFO
# Provides:          lcd-ip
# Required-Start:    $network
# Required-Stop:     
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Should-Start:      fb
# Short-Description: Runs lcd-ip
# Description:       Displays eth0 ip address on /dev/fb0.
# X-Start-Before:    
# X-Stop-After:      
# X-Timesys-Start-Number:  85
# X-Timesys-Stop-Number:  02
### END INIT INFO

PATH=/usr/bin:/bin:/usr/sbin:/sbin

case "$1"  in
  start)
    echo "Starting lcd-ip..."
    lcd-ip
    sleep 5
  ;;
  *)
  ;;
esac

