diff options
Diffstat (limited to 'src/nix-store/nix-store.cc')
-rw-r--r-- | src/nix-store/nix-store.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index dde04a4a8651..481e26cdbb17 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++); } } |