Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F461612
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, May 18, 6:18 AM
Size
855 B
Mime Type
text/x-diff
Expires
Tue, May 20, 6:18 AM (1 d, 15 h)
Engine
blob
Format
Raw Data
Handle
220358
Attached To
rARCHIVING archiving
View Options
diff --git a/lib/tasks/bvfs_cleanup.rake b/lib/tasks/bvfs_cleanup.rake
index c0f4184..535e113 100644
--- a/lib/tasks/bvfs_cleanup.rake
+++ b/lib/tasks/bvfs_cleanup.rake
@@ -1,17 +1,18 @@
namespace :bvfs do
desc 'Cleans up the restore database'
task cleanup: :environment do
- for_purge = ActiveRecord::Base.connection.tables.select do |name|
+ for_purge = ActiveRecord::Base.establish_connection(BACULA_CONF).connection.tables.
+ select do |name|
match_data = name.match(/^b2\d+(\d{12}$)/)
match_data.present? &&
match_data[1].present? &&
match_data[1] < (Archiving.settings[:temp_db_retention].ago.to_f * 100).to_i.to_s
end
for_purge.each do |dbname|
Bvfs.new(nil,[]).purge_db(dbname)
end
Rails.logger.warn("[BVFS]: Cleaned up dbs: #{for_purge.join(', ')}")
end
end
Event Timeline
Log In to Comment