From 3459059ed1f9332a9e71a4a7be5dc5e22e7f6bae Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 31 Dec 2018 18:22:12 +0000 Subject: Start tracking which store paths are in use This will enable garbage collection of the Guix store, without removing things that are still in use. --- lib/tasks/backend.rake | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'lib/tasks/backend.rake') diff --git a/lib/tasks/backend.rake b/lib/tasks/backend.rake index c23a3df..19dc462 100644 --- a/lib/tasks/backend.rake +++ b/lib/tasks/backend.rake @@ -6,6 +6,13 @@ namespace :backend do .find(args.backend_id) .deploy_backend end + + desc 'Update GC Roots' + task :update_guix_gcroots, [:backend_id] => :environment do |t, args| + Backends::TerraformAws + .find(args.backend_id) + .update_guix_gcroots + end end namespace :terraform_aws do @@ -22,5 +29,12 @@ namespace :backend do .find(args.backend_id) .destroy_backend end + + desc 'Update GC Roots' + task :update_guix_gcroots, [:backend_id] => :environment do |t, args| + Backends::TerraformAws + .find(args.backend_id) + .update_guix_gcroots + end end end -- cgit v1.2.3