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

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

if [ -x /usr/sbin/lpfc/lpfc_vector_map.sh ]; then
    /usr/sbin/lpfc/lpfc_vector_map.sh
fi
if [ -x /usr/sbin/lpfc/lpfc_configure_oas.sh ]; then
    /usr/sbin/lpfc/lpfc_configure_oas.sh
fi
