This commit is contained in:
EC2 Default User 2026-04-02 06:45:06 +00:00
parent 9fab8507a8
commit 746a24e745
2 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,8 @@ if [[ -n "${DB_HOST:-}" ]]; then MARIA_DB_CMD="$MARIA_DB_CMD -h $DB_HOST"; fi
if [[ -n "${DB_USER:-}" ]]; then MARIA_DB_CMD="$MARIA_DB_CMD -u $DB_USER"; fi if [[ -n "${DB_USER:-}" ]]; then MARIA_DB_CMD="$MARIA_DB_CMD -u $DB_USER"; fi
if [[ -n "${DB_PASS:-}" ]]; then MARIA_DB_CMD="$MARIA_DB_CMD -p$DB_PASS"; fi if [[ -n "${DB_PASS:-}" ]]; then MARIA_DB_CMD="$MARIA_DB_CMD -p$DB_PASS"; fi
PATH=/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin
while [[ 1 ]] while [[ 1 ]]
do do

View File

@ -16,3 +16,6 @@ install:
@echo '@reboot /bin/bash /root/DbContinuousIntegration/DbContinuousIntegrationWrapper.sh 2> /dev/null > /dev/null &' @echo '@reboot /bin/bash /root/DbContinuousIntegration/DbContinuousIntegrationWrapper.sh 2> /dev/null > /dev/null &'
@echo @echo
@echo 'CREATE TABLE SYS_PRD_BND.Tables (Name, onUpdate_phpCode, onUpdate_pyCode, onUpdate_jsCode, LastUpdated);' | sudo mysql @echo 'CREATE TABLE SYS_PRD_BND.Tables (Name, onUpdate_phpCode, onUpdate_pyCode, onUpdate_jsCode, LastUpdated);' | sudo mysql
@echo
@echo 'For DEBIAN:'
@echo 'apt get install pip composer'