You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.8 KiB
122 lines
3.8 KiB
# ===============================
|
|
# === Debian specific options ===
|
|
#================================
|
|
|
|
# By default, on Debian systems, only 'postgres' user
|
|
# is allowed to access PostgreSQL databases without password.
|
|
# In order to dump databases we need to run pg_dump/psql
|
|
# commands as 'postgres' with su.
|
|
#
|
|
# The following setting has been added to workraound this issue.
|
|
# (if it is set to empty, 'su' usage will be disabled)
|
|
SU_USERNAME=postgres
|
|
|
|
#=====================================================================
|
|
# Set the following variables to your system needs
|
|
# (Detailed instructions below variables)
|
|
#=====================================================================
|
|
|
|
# Username to access the PostgreSQL server e.g. dbuser
|
|
USERNAME=postgres
|
|
|
|
# Password
|
|
# create a file $HOME/.pgpass containing a line like this
|
|
# hostname:*:*:dbuser:dbpass
|
|
# replace hostname with the value of DBHOST and postgres with
|
|
# the value of USERNAME
|
|
|
|
# Host name (or IP address) of PostgreSQL server e.g localhost
|
|
DBHOST=localhost
|
|
|
|
# List of DBNAMES for Daily/Weekly Backup e.g. "DB1 DB2 DB3"
|
|
DBNAMES="all"
|
|
|
|
# pseudo database name used to dump global objects (users, roles, tablespaces)
|
|
GLOBALS_OBJECTS="postgres_globals"
|
|
|
|
# Backup directory location e.g /backups
|
|
BACKUPDIR="/mnt/BACKUP/postgresql"
|
|
|
|
# Mail setup
|
|
# What would you like to be mailed to you?
|
|
# - log : send only log file
|
|
# - files : send log file and sql files as attachments (see docs)
|
|
# - stdout : will simply output the log to the screen if run manually.
|
|
# - quiet : Only send logs if an error occurs to the MAILADDR.
|
|
MAILCONTENT="quiet"
|
|
|
|
# Set the maximum allowed email size in k. (4000 = approx 5MB email [see docs])
|
|
MAXATTSIZE="4000"
|
|
|
|
# Email Address to send mail to? (user@domain.com)
|
|
MAILADDR="root"
|
|
|
|
# ============================================================
|
|
# === ADVANCED OPTIONS ( Read the doc's below for details )===
|
|
#=============================================================
|
|
|
|
# List of DBBNAMES for Monthly Backups.
|
|
MDBNAMES="$DBNAMES"
|
|
GLOBALS_OBJECTS_INCLUDE="no"
|
|
# List of DBNAMES to EXLUCDE if DBNAMES are set to all (must be in " quotes)
|
|
DBEXCLUDE="postgres template1"
|
|
|
|
# Include CREATE DATABASE in backup?
|
|
CREATE_DATABASE=yes
|
|
|
|
# Separate backup directory and file for each DB? (yes or no)
|
|
SEPDIR=yes
|
|
|
|
# Which day do you want weekly backups? (1 to 7 where 1 is Monday)
|
|
DOWEEKLY=6
|
|
|
|
# Choose Compression type. (gzip, bzip2 or xz)
|
|
COMP=gzip
|
|
|
|
# Compress communications between backup server and PostgreSQL server?
|
|
# set compression level from 0 to 9 (0 means no compression)
|
|
COMMCOMP=0
|
|
|
|
# Additionally keep a copy of the most recent backup in a seperate directory.
|
|
LATEST=no
|
|
|
|
# OPT string for use with pg_dump ( see man pg_dump )
|
|
OPT=""
|
|
|
|
# Backup files extension
|
|
EXT="sql"
|
|
|
|
# Backup files permissions
|
|
PERM=600
|
|
|
|
# Encyrption settings
|
|
# (inspired by http://blog.altudov.com/2010/09/27/using-openssl-for-asymmetric-encryption-of-backups/)
|
|
#
|
|
# Once the backup done, each SQL dump will be encrypted and the original file
|
|
# will be deleted (if encryption was successful).
|
|
# It is recommended to backup into a staging directory, and then use the
|
|
# POSTBACKUP script to sync the encrypted files to the desired location.
|
|
#
|
|
# Encryption uses private/public keys. You can generate the key pairs like the following:
|
|
# openssl req -x509 -nodes -days 100000 -newkey rsa:2048 -keyout backup.key -out backup.crt -subj '/'
|
|
#
|
|
# Decryption:
|
|
# openssl smime -decrypt -in backup.sql.gz.enc -binary -inform DEM -inkey backup.key -out backup.sql.gz
|
|
|
|
# Enable encryption
|
|
ENCRYPTION=no
|
|
|
|
# Encryption public key
|
|
ENCRYPTION_PUBLIC_KEY="/etc/ssl/certs/autopostgresqlbackup.crt"
|
|
|
|
# Encryption Cipher (see enc manpage)
|
|
ENCRYPTION_CIPHER="aes256"
|
|
|
|
# Suffix for encyrpted files
|
|
ENCRYPTION_SUFFIX=".enc"
|
|
|
|
# Command to run before backups (uncomment to use)
|
|
#PREBACKUP="/etc/postgresql-backup-pre"
|
|
|
|
# Command run after backups (uncomment to use)
|
|
#POSTBACKUP="/etc/postgresql-backup-post"
|