#!/bin/sh
# chkconfig: 2345 19 71
### BEGIN INIT INFO
# Provides:          ltrx-network-common
# Required-Start:    modules
# Required-Stop:     
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: lantronix common network configuration
# Description:       lantronix common network configuration
# X-Start-Before:    network
# X-Stop-After:      network
# X-Timesys-Start-Number:  19
# X-Timesys-Stop-Number:  81
### END INIT INFO

LTRX_NET_COMMON="/etc/sysconfig/network-scripts/ltrx-network-common.script"
if [ ! -f $LTRX_NET_COMMON ]; then
    echo "Missing ltrx network common script."
    exit 1
fi
. $LTRX_NET_COMMON

ltrx_start_network

exit 0
