19 lines
444 B
Bash
19 lines
444 B
Bash
# Variables for fast-access of production server.
|
|
|
|
export PROD_HOST=example.com
|
|
export PROD_PORT=2222
|
|
export PROD_USER=user
|
|
|
|
export PROD_GIT_HOST=git.example.com
|
|
export PROD_GIT_PORT=8080
|
|
export PROD_GIT_USER=git
|
|
export PROD_GIT_BRANCH=main
|
|
|
|
export PROD_DATA_HOST=sftp.example.com
|
|
export PROD_DATA_PORT=2200
|
|
export PROD_DATA_USER=data
|
|
export PROD_DATA_DIR=/srv/sftp
|
|
|
|
PROG="$(basename -- "${BASH_SOURCE[0]}")"
|
|
echo "`date` - '$PROG' completed!"
|