about summary refs log tree commit diff
path: root/src/libstore/store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2004-09-09T21·19+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2004-09-09T21·19+0000
commitc16be6ac92b86981e8e4bb6703e694b675a28b0d (patch)
treede83320fe46090f8c1f6957dcba7a2e5e579560d /src/libstore/store.cc
parent47f87072ad42338a9b6397a250abf2775d051d8e (diff)
* Remove write permission from store objects after they have been
  added to the store.  Bug reported by Martin.

Diffstat (limited to 'src/libstore/store.cc')
-rw-r--r--src/libstore/store.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libstore/store.cc b/src/libstore/store.cc
index 5b471a1d9c..1f05b63a6c 100644
--- a/src/libstore/store.cc
+++ b/src/libstore/store.cc
@@ -448,6 +448,8 @@ Path addToStore(const Path & _srcPath)
             
             copyPath(srcPath, dstPath);
 
+            makePathReadOnly(dstPath);
+            
             Transaction txn(nixDB);
             registerValidPath(txn, dstPath);
             txn.commit();
@@ -476,6 +478,8 @@ void addTextToStore(const Path & dstPath, const string & s)
 
             writeStringToFile(dstPath, s);
 
+            makePathReadOnly(dstPath);
+            
             Transaction txn(nixDB);
             registerValidPath(txn, dstPath);
             txn.commit();