]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
ssh_config: reorder HashKnownHosts option
authorSimon Ruderich <simon@ruderich.org>
Sat, 2 Jul 2016 10:04:46 +0000 (12:04 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 2 Jul 2016 10:04:46 +0000 (12:04 +0200)
ssh_config

index b9935085a2abc386f2e2f9cf60a17facb1569d3a..188d9251e1353457443db676fc5200052d83ee5c 100644 (file)
@@ -3,7 +3,7 @@
 # Some options are set even if they are default to prevent /etc/ssh/ssh_config
 # from overwriting them.
 
-# Copyright (C) 2011-2014  Simon Ruderich
+# Copyright (C) 2011-2016  Simon Ruderich
 #
 # This file is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -116,17 +116,17 @@ Host *
 # prevents stale master connections.
     ControlPersist 10
 
-# Don't hash any hosts in ~/.ssh/known_hosts. It doesn't help if the ssh hosts
-# are stored in the shell's history file or in this file as shortcut so it's
-# rather useless (default).
-    HashKnownHosts no
-
 # Don't permit running local commands (default).
     PermitLocalCommand no
 
 # Don't send any environment variables (default).
     SendEnv
 
+# Don't hash any hosts in ~/.ssh/known_hosts. It doesn't help if the ssh hosts
+# are stored in the shell's history file or in this file as shortcut so it's
+# rather useless (default).
+    HashKnownHosts no
+
 # Check host IP in known_hosts when connecting to detect DNS spoofing
 # (default).
     CheckHostIP yes