summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-07-03 14:38:56 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-07-03 14:38:56 +0200
commit5cfa68ab50f49f73618c068724f6c590a0ae231a (patch)
tree0511a1c7cf29f8a493f61e326f5023ef45438d20 /pkgs/build-support
parent80213cbb051f2e172be20c03e51069f122d8bb6c (diff)
downloadnixlib-5cfa68ab50f49f73618c068724f6c590a0ae231a.tar
nixlib-5cfa68ab50f49f73618c068724f6c590a0ae231a.tar.gz
nixlib-5cfa68ab50f49f73618c068724f6c590a0ae231a.tar.bz2
nixlib-5cfa68ab50f49f73618c068724f6c590a0ae231a.tar.lz
nixlib-5cfa68ab50f49f73618c068724f6c590a0ae231a.tar.xz
nixlib-5cfa68ab50f49f73618c068724f6c590a0ae231a.tar.zst
nixlib-5cfa68ab50f49f73618c068724f6c590a0ae231a.zip
Reinstate sec=none
Seems to be required, despite the subsequent sec=ntlm. But the NixOS
VM tests work fine without this flag :-S

http://hydra.nixos.org/build/5451901
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/vm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix
index 52b50adbfecf..b1eb82ed8303 100644
--- a/pkgs/build-support/vm/default.nix
+++ b/pkgs/build-support/vm/default.nix
@@ -123,14 +123,14 @@ rec {
 
     echo "mounting Nix store..."
     mkdir -p /fs/nix/store
-    mount -t cifs //10.0.2.4/store /fs/nix/store -o guest,sec=ntlm
+    mount -t cifs //10.0.2.4/store /fs/nix/store -o guest,sec=none,sec=ntlm
 
     mkdir -p /fs/tmp
     mount -t tmpfs -o "mode=755" none /fs/tmp
 
     echo "mounting host's temporary directory..."
     mkdir -p /fs/tmp/xchg
-    mount -t cifs //10.0.2.4/xchg /fs/tmp/xchg -o guest,sec=ntlm
+    mount -t cifs //10.0.2.4/xchg /fs/tmp/xchg -o guest,sec=none,sec=ntlm
 
     mkdir -p /fs/proc
     mount -t proc none /fs/proc