diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-03-16 11:17:15 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-03-16 14:05:52 +0100 |
commit | ef0f5ff2a74e5e4dc49dfdd0ba6509a91281ddd5 (patch) | |
tree | 4f7b0598dd3aeefc16797a32b4551d11f48107c6 /gnu/tests/networking.scm | |
parent | 4df02ab675b262bc2d43f83ad33785eb434ea6cb (diff) | |
download | guix-ef0f5ff2a74e5e4dc49dfdd0ba6509a91281ddd5.tar.gz |
tests: dhcpd: Adjust network interface name.
This is a followup to 8e53fe2b91d2776bc1529e7b34967c8f1d9edc32. * gnu/tests/networking.scm (dhcpd-v4-configuration) (%dhcpd-os): Use "ens3" instead of "eth0".
Diffstat (limited to 'gnu/tests/networking.scm')
-rw-r--r-- | gnu/tests/networking.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/tests/networking.scm b/gnu/tests/networking.scm index d1234442bb..e90b247883 100644 --- a/gnu/tests/networking.scm +++ b/gnu/tests/networking.scm @@ -270,11 +270,11 @@ subnet 192.168.1.0 netmask 255.255.255.0 { (dhcpd-configuration (config-file minimal-dhcpd-v4-config-file) (version "4") - (interfaces '("eth0")))) + (interfaces '("ens3")))) (define %dhcpd-os (simple-operating-system - (static-networking-service "eth0" "192.168.1.4" + (static-networking-service "ens3" "192.168.1.4" #:netmask "255.255.255.0" #:gateway "192.168.1.1" #:name-servers '("192.168.1.2" "192.168.1.3")) |