-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f21417a
commit 14b5761
Showing
3 changed files
with
78 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{% if expired %}{{ expired | length }} have expired{% endif %}{% if expired and about_to_expire %}, {% endif %}{% if about_to_expire %}{{ about_to_expire | length }} about to expire{% endif %} | ||
|
||
{% if about_to_expire %} | ||
Following certificates are about to expire within following 48 hours: | ||
|
||
{% for common_name, path, cert in expired %} | ||
* {{ common_name }}, {{ "%x" % cert.serial_number }} | ||
{% endfor %} | ||
{% endif %} | ||
|
||
{% if expired %} | ||
Following certificates have expired: | ||
|
||
{% for common_name, path, cert in expired %} | ||
* {{ common_name }}, {{ "%x" % cert.serial_number }} | ||
{% endfor %} | ||
{% endif %} | ||
|
This file was deleted.
Oops, something went wrong.