1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-03 15:40:59 +01:00

Merge remote-tracking branch 'layered-store/overlayfs-store' into gc

This commit is contained in:
John Ericson 2023-07-25 09:48:06 -04:00
commit 73a55e4005
4 changed files with 37 additions and 16 deletions

View file

@ -209,13 +209,6 @@ void LocalOverlayStore::optimiseStore()
}
}
bool LocalOverlayStore::verifyStore(bool checkContents, RepairFlag repair)
{
if (repair)
warn("local-overlay: store does not support --verify --repair");
return LocalStore::verifyStore(checkContents, NoRepair);
}
static RegisterStoreImplementation<LocalOverlayStore, LocalOverlayStoreConfig> regLocalOverlayStore;
}