summaryrefslogtreecommitdiffstats
path: root/nixos/tests/bittorrent.nix
diff options
context:
space:
mode:
authorRob Vermaas <rob.vermaas@gmail.com>2014-08-31 10:58:54 +0200
committerRob Vermaas <rob.vermaas@gmail.com>2014-08-31 10:58:54 +0200
commitea8910652fcecbcd4f21aa1c66b1a0a239408b04 (patch)
tree539cd8cdd81d4edad720d7d4de6f927d82f5107c /nixos/tests/bittorrent.nix
parent2f697bf6931b24cdd428e22effbf6427a85afd42 (diff)
Revert "Merge pull request #3182 from wkennington/master.ipv6"
Diffstat (limited to 'nixos/tests/bittorrent.nix')
-rw-r--r--nixos/tests/bittorrent.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/bittorrent.nix b/nixos/tests/bittorrent.nix
index 7eb9c215ee1c..002e012f65f0 100644
--- a/nixos/tests/bittorrent.nix
+++ b/nixos/tests/bittorrent.nix
@@ -16,7 +16,7 @@ let
miniupnpdConf = nodes: pkgs.writeText "miniupnpd.conf"
''
ext_ifname=eth1
- listening_ip=${(head nodes.router.config.networking.interfaces.eth2.ip4).address}/24
+ listening_ip=${nodes.router.config.networking.interfaces.eth2.ipAddress}/24
allow 1024-65535 192.168.2.0/24 1024-65535
'';
@@ -53,7 +53,7 @@ in
{ environment.systemPackages = [ pkgs.transmission ];
virtualisation.vlans = [ 2 ];
networking.defaultGateway =
- (head nodes.router.config.networking.interfaces.eth2.ip4).address;
+ nodes.router.config.networking.interfaces.eth2.ipAddress;
networking.firewall.enable = false;
};
@@ -81,7 +81,7 @@ in
# Create the torrent.
$tracker->succeed("mkdir /tmp/data");
$tracker->succeed("cp ${file} /tmp/data/test.tar.bz2");
- $tracker->succeed("transmission-create /tmp/data/test.tar.bz2 -t http://${(head nodes.tracker.config.networking.interfaces.eth1.ip4).address}:6969/announce -o /tmp/test.torrent");
+ $tracker->succeed("transmission-create /tmp/data/test.tar.bz2 -t http://${nodes.tracker.config.networking.interfaces.eth1.ipAddress}:6969/announce -o /tmp/test.torrent");
$tracker->succeed("chmod 644 /tmp/test.torrent");
# Start the tracker. !!! use a less crappy tracker