summaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-31 14:42:20 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-31 14:42:20 +0100
commitd3af3a902ef110b50abcc599962bc856eefe4428 (patch)
tree2c53389835b1fbb6acda467793e27ed060a08dc8 /app/models
parentd7776c30e782470e6fb2cb795a8fadbba8465fc2 (diff)
Fixed the backup config.
Diffstat (limited to 'app/models')
-rw-r--r--app/models/gs5_backup.rb53
1 files changed, 0 insertions, 53 deletions
diff --git a/app/models/gs5_backup.rb b/app/models/gs5_backup.rb
deleted file mode 100644
index 928245f..0000000
--- a/app/models/gs5_backup.rb
+++ /dev/null
@@ -1,53 +0,0 @@
-# encoding: utf-8
-
-##
-# Backup Generated: gs5_backup
-# Once configured, you can run the backup with the following command:
-#
-# $ backup perform -t gs5_backup [-c <path_to_configuration_file>]
-#
-Backup::Model.new(:gs5_backup, 'GS5 backup') do
- ##
- # Split [Splitter]
- #
- # Split the backup file in to chunks of 250 megabytes
- # if the backup file size exceeds 250 megabytes
- #
- split_into_chunks_of 640
-
- ##
- # MySQL [Database]
- #
- database MySQL do |db|
- # To dump all databases, set `db.name = :all` (or leave blank)
- db.name = system_odbc_configuration['gemeinschaft']['DATABASE']
- db.username = system_odbc_configuration['gemeinschaft']['USER']
- db.password = system_odbc_configuration['gemeinschaft']['PASSWORD']
- db.host = "localhost"
- db.port = 3306
- db.socket = "/tmp/mysql.sock"
- # Note: when using `skip_tables` with the `db.name = :all` option,
- # table names should be prefixed with a database name.
- # e.g. ["db_name.table_to_skip", ...]
- db.skip_tables = ["skip", "these", "tables"]
- db.only_tables = ["only", "these" "tables"]
- db.additional_options = ["--quick", "--single-transaction"]
- # Optional: Use to set the location of this utility
- # if it cannot be found by name in your $PATH
- # db.mysqldump_utility = "/opt/local/bin/mysqldump"
- end
-
- ##
- # Local (Copy) [Storage]
- #
- store_with Local do |local|
- local.path = "/var/backups/gs5"
- local.keep = 5
- end
-
- ##
- # Gzip [Compressor]
- #
- compress_with Gzip
-
-end