templates/cli/utility/config in backup-3.0.24 vs templates/cli/utility/config in backup-3.0.25
- old
+ new
@@ -11,19 +11,20 @@
# 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
+#
+# Backup::Storage::S3.defaults do |s3|
+# s3.access_key_id = "my_access_key_id"
+# s3.secret_access_key = "my_secret_access_key"
+# end
+#
+# Backup::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))