diff options
author | Chris Marusich <cmmarusich@gmail.com> | 2018-04-27 01:34:38 -0700 |
---|---|---|
committer | Chris Marusich <cmmarusich@gmail.com> | 2018-04-27 01:39:28 -0700 |
commit | a654d3debd4a3f73ca191c459f8af8618fd1da58 (patch) | |
tree | 17a16f2f6bc657318e38498de1e9d1d3b589f1b6 /gnu/services/networking.scm | |
parent | 2216b6f4108abfb2f75db7667beaa46ee7d630e8 (diff) | |
download | guix-a654d3debd4a3f73ca191c459f8af8618fd1da58.tar guix-a654d3debd4a3f73ca191c459f8af8618fd1da58.tar.gz |
services: Set default <dhcpd-configuration> version to "4".
* gnu/services/networking.scm (<dhcpd-configuration>) <version>: Set the
default to "4" instead of "6"; both our manual and upstream says the default
should be "4".
Diffstat (limited to 'gnu/services/networking.scm')
-rw-r--r-- | gnu/services/networking.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm index be34f32395..df67bd69c7 100644 --- a/gnu/services/networking.scm +++ b/gnu/services/networking.scm @@ -361,7 +361,7 @@ Protocol (DHCP) client, on all the non-loopback network interfaces." (config-file dhcpd-configuration-config-file ;file-like (default #f)) (version dhcpd-configuration-version ;"4", "6", or "4o6" - (default "6")) + (default "4")) (run-directory dhcpd-configuration-run-directory (default "/run/dhcpd")) (lease-file dhcpd-configuration-lease-file |