summary refs log tree commit diff
path: root/nixos/modules/services/networking/ssh
diff options
context:
space:
mode:
authordanbst <abcz2.uprola@gmail.com>2019-08-05 14:03:38 +0300
committerdanbst <abcz2.uprola@gmail.com>2019-08-05 14:03:38 +0300
commit0f8596ab3f05321e36d9bd53ea7f048b7f0b62e3 (patch)
tree121d16875c362cecba39cee43a9602f71d870fe1 /nixos/modules/services/networking/ssh
parent91bb646e98808d594b339d3386f7963a546ccfb4 (diff)
downloadnixpkgs-0f8596ab3f05321e36d9bd53ea7f048b7f0b62e3.tar
nixpkgs-0f8596ab3f05321e36d9bd53ea7f048b7f0b62e3.tar.gz
nixpkgs-0f8596ab3f05321e36d9bd53ea7f048b7f0b62e3.tar.bz2
nixpkgs-0f8596ab3f05321e36d9bd53ea7f048b7f0b62e3.tar.lz
nixpkgs-0f8596ab3f05321e36d9bd53ea7f048b7f0b62e3.tar.xz
nixpkgs-0f8596ab3f05321e36d9bd53ea7f048b7f0b62e3.tar.zst
nixpkgs-0f8596ab3f05321e36d9bd53ea7f048b7f0b62e3.zip
mass replace "flip map -> forEach"
See `forEach`-introduction commit.
```
rg 'flip map ' --files-with-matches | xargs sed -i 's/flip map /forEach /g'
```
Diffstat (limited to 'nixos/modules/services/networking/ssh')
-rw-r--r--nixos/modules/services/networking/ssh/sshd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix
index 0f9d2420903..91fc7d72bc6 100644
--- a/nixos/modules/services/networking/ssh/sshd.nix
+++ b/nixos/modules/services/networking/ssh/sshd.nix
@@ -502,7 +502,7 @@ in
 
     assertions = [{ assertion = if cfg.forwardX11 then cfgc.setXAuthLocation else true;
                     message = "cannot enable X11 forwarding without setting xauth location";}]
-      ++ flip map cfg.listenAddresses ({ addr, ... }: {
+      ++ forEach cfg.listenAddresses ({ addr, ... }: {
         assertion = addr != null;
         message = "addr must be specified in each listenAddresses entry";
       });