nixos/networking: Fix more harmless errors

This commit is contained in:
William A. Kennington III 2014-12-01 01:18:26 -08:00
parent fcb173f70f
commit 1c04e69bce
2 changed files with 12 additions and 12 deletions

View file

@ -66,7 +66,7 @@ in
serviceConfig.RemainAfterExit = true;
script =
(optionalString (!config.services.resolved.enable) ''
''
# Set the static DNS configuration, if given.
${pkgs.openresolv}/sbin/resolvconf -m 1 -a static <<EOF
${optionalString (cfg.nameservers != [] && cfg.domain != null) ''
@ -77,9 +77,9 @@ in
nameserver ${ns}
'')}
EOF
'') + ''
# Set the default gateway.
${optionalString (cfg.defaultGateway != null) ''
${optionalString (cfg.defaultGateway != null && cfg.defaultGateway != "") ''
# FIXME: get rid of "|| true" (necessary to make it idempotent).
ip route add default via "${cfg.defaultGateway}" ${
optionalString (cfg.defaultGatewayWindowSize != null)