Sha256: fa5c4be73304a4b335ab467d3a81b191de455f471a840021c9ccb80704be44ab

Contents?: true

Size: 922 Bytes

Versions: 5

Compression:

Stored size: 922 Bytes

Contents

# encoding: utf-8

##
# Backup
# Generated Main Config Template
#
# For more information:
#
# View the Git repository at https://github.com/meskyanichi/backup
# View the Wiki/Documentation at https://github.com/meskyanichi/backup/wiki
# View the issue log at https://github.com/meskyanichi/backup/issues

##
# Global Configuration
# Add more (or remove) global configuration below
Backup::Configuration::Storage::S3.defaults do |s3|
  # s3.access_key_id     = "my_access_key_id"
  # s3.secret_access_key = "my_secret_access_key"
end

Backup::Configuration::Encryptor::OpenSSL.defaults do |encryption|
  # encryption.password = "my_password"
  # encryption.base64   = true
  # encryption.salt     = true
end

##
# Load all models from the models directory (after the above global configuration blocks)
Dir[File.join(File.dirname(Config.config_file), "models", "*.rb")].each do |model|
  instance_eval(File.read(model))
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
backup-3.0.24 templates/cli/utility/config
backup_checksum-3.0.23 templates/cli/utility/config
backup-3.0.23 templates/cli/utility/config
backup-3.0.22 templates/cli/utility/config
backup-3.0.21 templates/cli/utility/config