1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-27 12:41:00 +01:00

Runtime state arguments added to nix-state.

This commit is contained in:
Wouter den Breejen 2007-10-23 14:02:25 +00:00
parent c0dceea9f0
commit 7e0dcc5dcb
15 changed files with 155 additions and 50 deletions

View file

@ -108,6 +108,10 @@ public:
Path lookupStatePath(const Path & storePath, const string & identifier, const string & user);
void setStateOptions(const Path & statePath, const string & user, const string & group, int chmod, const string & runtimeArgs);
void getStateOptions(const Path & statePath, string & user, string & group, int & chmod, string & runtimeArgs);
private:
AutoCloseFD fdSocket;
FdSink to;