mirror of
https://github.com/NixOS/nix.git
synced 2025-11-17 07:52:43 +01:00
* Pass --use-atime / --max-atime to the daemon.
This commit is contained in:
parent
6f6bb1fdea
commit
60ec75048a
3 changed files with 9 additions and 1 deletions
|
|
@ -426,6 +426,10 @@ void RemoteStore::collectGarbage(const GCOptions & options, GCResults & results)
|
|||
writeInt(options.ignoreLiveness, to);
|
||||
writeLongLong(options.maxFreed, to);
|
||||
writeInt(options.maxLinks, to);
|
||||
if (GET_PROTOCOL_MINOR(daemonVersion) >= 5) {
|
||||
writeInt(options.useAtime, to);
|
||||
writeInt(options.maxAtime, to);
|
||||
}
|
||||
|
||||
processStderr();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue