aboutsummaryrefslogtreecommitdiff
path: root/src/nix-worker
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix-worker')
-rw-r--r--src/nix-worker/main.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/nix-worker/main.cc b/src/nix-worker/main.cc
index 95077e653..fef2c2958 100644
--- a/src/nix-worker/main.cc
+++ b/src/nix-worker/main.cc
@@ -127,6 +127,19 @@ void processConnection(Source & from, Sink & to)
break;
}
+ case wopAddTempRoot: {
+ Path path = readStorePath(from);
+ store->addTempRoot(path);
+ writeInt(1, to);
+ break;
+ }
+
+ case wopSyncWithGC: {
+ store->syncWithGC();
+ writeInt(1, to);
+ break;
+ }
+
default:
throw Error(format("invalid operation %1%") % op);
}