From 5e49e3204b7e0c394f405d895b83fcaf594fa419 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Wed, 21 Apr 2021 17:56:53 +0200 Subject: [PATCH] bundles/nfs-server: sort shares --- bundles/nfs-server/files/exports | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/nfs-server/files/exports b/bundles/nfs-server/files/exports index 8241a51..095261a 100644 --- a/bundles/nfs-server/files/exports +++ b/bundles/nfs-server/files/exports @@ -1,3 +1,3 @@ -% for path, shares in node.metadata['nfs-server']['shares'].items(): +% for path, shares in sorted(node.metadata['nfs-server']['shares'].items()): ${path} ${' '.join(sorted(shares))} % endfor