From 7672e9fef88f416e8b4a16c40d30b17dfa598249 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 --- library/system/authorized_key | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/system/authorized_key b/library/system/authorized_key index 269cb728493..322d2c4348d 100644 --- a/library/system/authorized_key +++ b/library/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: