#!/bin/sh
#
# add-disk
#
#       Runs the commands to make Solaris locate a new disk that
#       has been plugged in after the system was booted.
#

/usr/sbin/drvconfig
/usr/sbin/devlinks
/usr/sbin/disks                 # or /usr/sbin/tapes for tapes
/usr/ucb/ucblinks               # Compatibility links

exit 0
