summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-07-02 17:03:29 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-07-02 17:03:29 +0200
commit75e34854f667506ecffcc6b5f8ba51a1aa6e4d43 (patch)
tree391f5e6370db3748cd985f3fdc4d92a090eb1df9 /pkgs/build-support
parentebe81d17d7cb59733bdf5a185c3df8f98f927d85 (diff)
downloadnixlib-75e34854f667506ecffcc6b5f8ba51a1aa6e4d43.tar
nixlib-75e34854f667506ecffcc6b5f8ba51a1aa6e4d43.tar.gz
nixlib-75e34854f667506ecffcc6b5f8ba51a1aa6e4d43.tar.bz2
nixlib-75e34854f667506ecffcc6b5f8ba51a1aa6e4d43.tar.lz
nixlib-75e34854f667506ecffcc6b5f8ba51a1aa6e4d43.tar.xz
nixlib-75e34854f667506ecffcc6b5f8ba51a1aa6e4d43.tar.zst
nixlib-75e34854f667506ecffcc6b5f8ba51a1aa6e4d43.zip
Remove redundant cifs option
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 b1eb82ed8303..52b50adbfecf 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=none,sec=ntlm
+    mount -t cifs //10.0.2.4/store /fs/nix/store -o guest,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=none,sec=ntlm
+    mount -t cifs //10.0.2.4/xchg /fs/tmp/xchg -o guest,sec=ntlm
 
     mkdir -p /fs/proc
     mount -t proc none /fs/proc