#!/bin/bash
# description: Executes the brcmfcoe_vector_map.sh and brcmfcoe_configure_oas.sh
#    scripts, which configure the Emulex I/O Channel to CPU Load Balancing and
#    Optimized Access.

### BEGIN INIT INFO
# Provides: brcmfcoe-vector-map
# Required-Start:
# Required-Stop:
# Default-Start: 2 3 5
### END INIT INFO

if [ -x /usr/sbin/brcmfcoe/brcmfcoe_vector_map.sh ]; then
    /usr/sbin/brcmfcoe/brcmfcoe_vector_map.sh
fi
if [ -x /usr/sbin/brcmfcoe/brcmfcoe_configure_oas.sh ]; then
    /usr/sbin/brcmfcoe/brcmfcoe_configure_oas.sh
fi
