# # Build script for etc/scinput.txt # $Id: //depot/dev/proactive/explorer3/build/scinput.txt#1 $ # # etc/scinput.txt builder if [ "$1" = install ]; then if [ ! -f "${PKG_INSTALL_ROOT}/${BASEDIR}/etc/scinput.txt" ] then # File header echo "# Input file for extended data collection" echo "# Format is HOST PASSWORD" fi fi # etc/scinput.txt deconstructor if [ "$1" = remove ]; then if [ -f "${PKG_INSTALL_ROOT}/${BASEDIR}/etc/scinput.txt" ]; then cat ${PKG_INSTALL_ROOT}/${BASEDIR}/etc/scinput.txt fi fi