#!/bin/bash

## System account info
## For configure db mysql

root_user="root"
root_pass="your_root_password"

## User Account UNIX
## For owner file and database user and create

user="sviluppo"
pass="password"
group="sviluppo"


#############
# DB Config #
#############

db_name="manager"
db_host="localhost"
db_user=$user
db_pass=$pass

# Default 1 for master server else for slave put in sequence 2 , 3 , 4 ... ecc
# You find server id from manager in the menu Server Manager
# 1 = Master Server
# 2 = Slave Server 1
# 3 = Slave Server 2
# x = for more server


server_ident="1"
script_dir="/var/www/manager/script"
cfg_dir="/var/www/manager/cfg"
tmp_folder="/var/www/manager/tmp"
oscam_config="/usr/local/etc"
cccam_server_info="/var/www/cccam/localhost/download"
crond_path="/etc/cron.d"
rrd_path_db="/var/www/manager/rrd" 
rrd_path_graph="/var/www/manager/graph"
wantemu="no"
uphops="{ 0:0:2 }"

