about summary refs log tree commit diff
path: root/src/nix-store
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2008-09-17T14·52+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2008-09-17T14·52+0000
commitf32fef1b075f63ecf8c7351c5e67d4dd95c0fb80 (patch)
treef43b345933e83b54ec1c0ffa59cadf8e3b851666 /src/nix-store
parent4af2fdba6d709d0b9bb77dd58ceb6e16d6cd4cfa (diff)
* GC option `--max-atime' that specifies an upper limit to the last
  accessed time of paths that may be deleted.  Anything more recently
  used won't be deleted.  The time is specified in time_t,
  e.g. seconds since 1970-01-01 00:00:00 UTC; use `date +%s' to
  convert to time_t from the command line. 

  Example: to delete everything that hasn't been used in the last two
  months:

  $ nix-store --gc -v --max-atime $(date +%s -d "2 months ago")
  

Diffstat (limited to 'src/nix-store')
-rw-r--r--src/nix-store/nix-store.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index dde04a4a86..481e26cdbb 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -531,8 +531,14 @@ static void opGC(Strings opFlags, Strings opArgs)
         else if (*i == "--max-freed") options.maxFreed = getIntArg(*i, i, opFlags.end());
         else if (*i == "--max-links") options.maxLinks = getIntArg(*i, i, opFlags.end());
         else if (*i == "--use-atime") options.useAtime = true;
+        else if (*i == "--max-atime") {
+            options.useAtime = true;
+            options.maxAtime = getIntArg(*i, i, opFlags.end());
+        }
         else throw UsageError(format("bad sub-operation `%1%' in GC") % *i);
 
+    if (!opArgs.empty()) throw UsageError("no arguments expected");
+    
     PrintFreed freed(options.action == GCOptions::gcDeleteDead, results);
     store->collectGarbage(options, results);
 
@@ -745,7 +751,7 @@ void run(Strings args)
             indirectRoot = true;
         else if (arg[0] == '-') {            
             opFlags.push_back(arg);
-            if (arg == "--max-freed" || arg == "--max-links") { /* !!! hack */
+            if (arg == "--max-freed" || arg == "--max-links" || arg == "--max-atime") { /* !!! hack */
                 if (i != args.end()) opFlags.push_back(*i++);
             }
         }