1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-18 16:29:36 +01:00

Invoke remount-hook program when necessary.

This commit is contained in:
Ben Radford 2023-07-26 14:05:54 +01:00 committed by Ben Radford
parent 33ebae75ca
commit ed14286924
4 changed files with 29 additions and 2 deletions

View file

@ -118,12 +118,16 @@ private:
void queryRealisationUncached(const DrvOutput&,
Callback<std::shared_ptr<const Realisation>> callback) noexcept override;
void collectGarbage(const GCOptions & options, GCResults & results) override;
void deleteStorePath(const Path & path, uint64_t & bytesFreed) override;
void optimiseStore() override;
Path toRealPathForHardLink(const StorePath & storePath) override;
void remountIfNecessary();
bool _remountRequired = false;
};