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