Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F886092
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
Fri, Aug 8, 8:44 PM
Size
855 B
Mime Type
text/x-diff
Expires
Sun, Aug 10, 8:44 PM (23 h, 34 m)
Engine
blob
Format
Raw Data
Handle
245839
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