#!/bin/bash if [ -a "${INSTALL_PATH}/protheus/bin/appserver.ini" ] then echo "Help-Online Setting appserver.ini ..." echo [HTTP] >> "${INSTALL_PATH}/protheus/bin/appserver.ini" echo ENABLE=1 >> "${INSTALL_PATH}/protheus/bin/appserver.ini" echo PORT=80 >> "${INSTALL_PATH}/protheus/bin/appserver.ini" echo PATH=${INSTALL_PATH}/help-online >> "${INSTALL_PATH}/protheus/bin/appserver.ini" fi exit 0