#!/bin/bash

# TriLynx Systems
# Filename: awsbackup.config

# AWS Backup Version
AWSBACKUP_VERSION=1.1.0

# This is the configuration file intended to accompany the 'awsbackup-...' scripts.

# The name of the Trilynx AWS S3 bucket to upload to
S3BUCKET='trilynx-systems-clients'

# Trilynx customer identifier - (Used in constructing the backup command and destination)
CUSTCODE=''

# Hostname of the local system
HOSTNAME=$(hostname -s)

# Novastar node code M = master node, B = Backup node ,  S01 = Slave## node
NODECODE='M'

# The --profile name stored in aws-cli local root configuration.
  # set via: $ sudo aws configure --profile <AWSCLIPROFILE>
AWSCLIPROFILE="$CUSTCODE"


# FTP Options
# Used for some customers who want to have backups on their own server
# Note FTP upload is skipped if server is set to "none" here
FTP_SERVER='none'
FTP_DIR='pub'
FTP_USERNAME=''
FTP_PASSWORD=''


