The cleanups were broken in that every single archive was also copied to a shared folder and never deleted from there. Co-authored-by: Greg Karékinian <greg@karekinian.com>
18 lines
481 B
Ruby
18 lines
481 B
Ruby
#
|
|
# Cookbook Name:: kosmos-mastodon
|
|
# Recipe:: backup
|
|
#
|
|
|
|
postgresql_data_bag_item = data_bag_item('credentials', 'postgresql')
|
|
|
|
unless node.chef_environment == "development"
|
|
node.override['backup']['s3']['keep'] = 1
|
|
node.override["backup"]["postgresql"]["host"] = "pg.kosmos.local"
|
|
node.override["backup"]["postgresql"]["databases"]["mastodon"] = {
|
|
username: "mastodon",
|
|
password: postgresql_data_bag_item['mastodon_user_password']
|
|
}
|
|
|
|
include_recipe "backup"
|
|
end
|