summary refs log tree commit diff
path: root/nixos/modules/tasks/network-interfaces.nix
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2015-10-05 13:23:58 +0200
committerThomas Strobel <ts468@cam.ac.uk>2015-10-06 20:12:39 +0200
commit881ec1efb840dd1c62b89588d67f6e2822791759 (patch)
tree0d87b9b7a4310e5573d21e632e00dfedbf951a58 /nixos/modules/tasks/network-interfaces.nix
parent7a8980193d94a15bf4d7267d846e5b69c61fa413 (diff)
downloadnixpkgs-881ec1efb840dd1c62b89588d67f6e2822791759.tar
nixpkgs-881ec1efb840dd1c62b89588d67f6e2822791759.tar.gz
nixpkgs-881ec1efb840dd1c62b89588d67f6e2822791759.tar.bz2
nixpkgs-881ec1efb840dd1c62b89588d67f6e2822791759.tar.lz
nixpkgs-881ec1efb840dd1c62b89588d67f6e2822791759.tar.xz
nixpkgs-881ec1efb840dd1c62b89588d67f6e2822791759.tar.zst
nixpkgs-881ec1efb840dd1c62b89588d67f6e2822791759.zip
networking module: vswitches: re-structure dependencies to systemd units
Diffstat (limited to 'nixos/modules/tasks/network-interfaces.nix')
-rw-r--r--nixos/modules/tasks/network-interfaces.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix
index 6b5241c2aa5..92151b00b06 100644
--- a/nixos/modules/tasks/network-interfaces.nix
+++ b/nixos/modules/tasks/network-interfaces.nix
@@ -381,8 +381,8 @@ in
       description =
         ''
           This option allows you to define Open vSwitches that connect
-          physical networks together.  The value of this option is an
-          attribute set.  Each attribute specifies a vswitch, with the
+          physical networks together. The value of this option is an
+          attribute set. Each attribute specifies a vswitch, with the
           attribute name specifying the name of the vswitch's network
           interface.
         '';
@@ -398,16 +398,6 @@ in
             "The physical network interfaces connected by the vSwitch.";
         };
 
-        bindInterfaces = mkOption {
-          type = types.bool;
-          default = false;
-          description = ''
-            If true, then the interfaces of the vSwitch are brought 'up' and especially
-            also 'down' together with the vSwitch. That requires that every interfaces
-            is configured as a systemd network services.
-          '';
-        };
-
         controllers = mkOption {
           type = types.listOf types.str;
           default = [];