forked from Jazzmax/rsa_sa_backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsa_backup.conf
66 lines (50 loc) · 1.75 KB
/
sa_backup.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/bin/bash
#######################################################################
# sa_backup configuration file version 1.0.11
# Can be loaded by using --config=<conf_file> command line argument
#
#######################################################################
BACKUP_TYPE=local # local | nfs
BACKUPPATH=/root/sabackups # Local backup directory
LOG=sa_backup.log # The backup log file
LOG_MAX_DIM=10000000 # Max size of log file in bytes - 10MB
RETENTION_DAYS=0 # Local backups retention in days (0 - no cleanup)
# System files
SYS_ENABLED=true
# SA server / Jetty server
SASERVER_ENABLED=true
# Reporting engine
RE_ENABLED=true
RE_FULLBACKUP=1 # 0 - backup only RE configuration;
# 1 - full RE backup
# Puppet
PUPPET_ENABLED=true
# RabbitMQ server
RABBITMQ_ENABLED=true
# Core Appliance Services
CORE_ENABLED=true
# MongoDB
MONGODB_ENABLED=true
# Malware Analysis
MALWARE_ENABLED=true
# ESA
ESA_ENABLED=true
# Incident Management
IM_ENABLED=true
# Log collector database
LC_ENABLED=true
# Warehouse Connector database
WHC_ENABLED=true
# PostgreSQL DB
PGSQL_ENABLED=true
# SMS
SMS_ENABLED=true
# Additional/custom folders and files to backup
CUSTOM_ENABLED=true
CUSTOM=""
# Exclude list for the custom backup
CUSTOM_EXCLUDE=""
#----------------------------------------------------------------------
# Remote NFS
NFSMOUNT="" # local mount point. No backslash at the end of this. e.g. "/mount-point"
NFSDIR="" # NFS exported directory. No backslash at the end of this. e.g. "nfsservername:/backups/SA/COREs"