X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/a89717c095abc842b5908617279e6c601dcd27c5..9b2abddf2004a1424175886a6e853304717cb0fe:/cookbooks/letsencrypt/templates/default/check-certificates.erb diff --git a/cookbooks/letsencrypt/templates/default/check-certificates.erb b/cookbooks/letsencrypt/templates/default/check-certificates.erb index d07bacf5c..06f4f0a98 100644 --- a/cookbooks/letsencrypt/templates/default/check-certificates.erb +++ b/cookbooks/letsencrypt/templates/default/check-certificates.erb @@ -1,7 +1,7 @@ #!/bin/sh -<% @certificates.each_value do |certificate| -%> -<% certificate[:nodes].each do |host| -%> +<% @certificates.values.sort_by { |c| c[:domains].first }.each do |certificate| -%> +<% certificate[:nodes].sort_by { |h| h[:name] }.each do |host| -%> /srv/acme.openstreetmap.org/bin/check-certificate <%= host[:name] %> <%= host[:address] %> <%= certificate[:domains].join(" ") %> <% end -%> <% end -%>