Newer
Older
#!/bin/bash
# DO NOT EDIT THIS FILE!
# Put your local configuration in conf.sh
# Default configuration values
# ----------------------------
# -- System --
# Skyreach in which system looks for packages
SKYREACH_SSL_VERIFY='1'
SKYREACH_API_KEY=''
SKYREACH_APT_TOKEN=''
SKYREACH_ACTIVATION_KEY=''
NTP_SERVER='0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org'
# SSL certificate
SSL_CERTIFICATE='/etc/ssl/certs/ssl-cert-snakeoil.pem'
SSL_CERTIFICATE_KEY='/etc/ssl/private/ssl-cert-snakeoil.key'
# APT sources
# Locale & TimeZone
LOCALE='en_US.UTF-8'
TIMEZONE='Etc/UTC'
# -- Shell --
# ubicast shell account
# customer shell account
EMAIL_SMTP_SERVER=''
EMAIL_SMTP_USER=''
EMAIL_SMTP_PWD=''
EMAIL_SENDER=''
# separate emails with comas in EMAIL_ADMINS
EMAIL_ADMINS='sysadmin@ubicast.eu'
# -- Wowza --
WOWZA_LIVE_PWD='test'
WOWZA_MANAGER_PWD='test'
# -- MediaServer --
MS_SERVER_NAME='mediaserver'
MS_ID='fX_msuser'
# API key looks like: s00pN-aRseu-dnfMq-678CV-9nS9E
MS_API_KEY=
MS_SECRET='secret'
MS_SUPERUSER_PWD='test'
MS_ADMIN_PWD='test'
MONITOR_SERVER_NAME='monitor'
MONITOR_SUPERUSER_PWD='test'
MONITOR_ADMIN_PWD='test'
# -- Miris Manager --
CM_SERVER_NAME='mirismanager'
CM_SUPERUSER_PWD='test'
CM_ADMIN_PWD='test'
# if no password is set, it will not be changed or set
# -- Celerity --
CELERITY_SIGNING_KEY='test'
# worker IP adresses, use commas to separate values
CELERITY_WORKER_IP='127.0.1.1'
# -- Network configuration --
# applied with client configuration step
NETWORK_IP=''
NETWORK_DNS=''
NETWORK_MASK=''
NETWORK_GATEWAY=''
# define this if IP is NATed
# PROXY_EXCLUDE is used in no_proxy env (a comma separated list of domains)
BACKUP_SERVER=''
# -- Tester config --
# separate values with commas
# TESTER_MAX_INSTANCES is ignored if TESTER_MS_INSTANCES is set
# separate values with commas
# encode report attachment to base64
TESTER_BASE64_ATTACH='0'
# -- Constants --
CYAN='\033[0;36m'
PURPLE='\033[0;35m'
BLUE='\033[0;34m'
YELLOW='\033[0;32m'
GREEN='\033[0;32m'
RED='\033[0;31m'
NC='\033[0;0m'
# Upstream configuration override
# -------------------------------
# (file generated by Panel / Skyreach)
if [ -f "/root/envsetup/auto-generated-conf.sh" ]; then
source "/root/envsetup/auto-generated-conf.sh"
fi
# Local configuration override
# ----------------------------
if [ -f "/root/envsetup/conf.sh" ]; then
source "/root/envsetup/conf.sh"
fi