From 2ad3a46e1358bd8a2a0e4a32c463c0dfa393507f Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sun, 13 Oct 2013 13:47:23 +0200 Subject: [PATCH] sort the option_key to have a constant predictable line --- system/authorized_key | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/authorized_key b/system/authorized_key index 269cb728493..322d2c4348d 100644 --- a/system/authorized_key +++ b/system/authorized_key @@ -254,7 +254,7 @@ def writekeys(module, filename, keys): option_str = "" if options: option_strings = [] - for option_key in options.keys(): + for option_key in sorted(options.keys()): if options[option_key]: option_strings.append("%s=%s" % (option_key, options[option_key])) else: