|
|
|
@ -148,7 +148,7 @@ user_deleted : {{ user_deleted }}
|
|
|
|
|
|
|
|
|
|
{{ log_output(list_package_installs) }}
|
|
|
|
|
|
|
|
|
|
{% if list_package_installs|length < 1 %}
|
|
|
|
|
{% if list_package_installs|length = 0 %}
|
|
|
|
|
<mark>
|
|
|
|
|
Today no new packages were installed...
|
|
|
|
|
</mark>
|
|
|
|
@ -162,12 +162,12 @@ user_deleted : {{ user_deleted }}
|
|
|
|
|
</mark>
|
|
|
|
|
|
|
|
|
|
{{ log_output(list_package_upgrade) }}
|
|
|
|
|
|
|
|
|
|
<mark>
|
|
|
|
|
Packages are upgraded to fix Previous bugs they had, or allow new options for usage they did not have prior.
|
|
|
|
|
</mark>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if list_package_upgrade|length < 0 %}
|
|
|
|
|
<mark> Out of the installed packages, none were upgraded today...</mark>
|
|
|
|
|
{% else %}
|
|
|
|
|
<mark> No existing packages were upgraded today.</mark>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{% if list_package_remove|length > 0 %}
|
|
|
|
@ -175,20 +175,18 @@ user_deleted : {{ user_deleted }}
|
|
|
|
|
<mark>
|
|
|
|
|
These package were removed today:
|
|
|
|
|
</mark>
|
|
|
|
|
<ul>
|
|
|
|
|
{% for item in list_package_remove %}
|
|
|
|
|
<li>{{ item }}</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
<mark>
|
|
|
|
|
Packages could be removed because of consuming too much storage, not being used by the people who share the
|
|
|
|
|
server, or they are no longer secure. It is often good practice to 'do some spring cleaning' every now and
|
|
|
|
|
then and remove the packages that no longer serve you any purpose.
|
|
|
|
|
</mark>
|
|
|
|
|
<b>Does not show this last mark statement after the list</b>
|
|
|
|
|
</ul>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if list_package_remove|length < 0 %} <mark>
|
|
|
|
|
No packages were removed today...
|
|
|
|
|
|
|
|
|
|
{{ log_output(list_package_remove) }}
|
|
|
|
|
|
|
|
|
|
<mark>
|
|
|
|
|
Packages could be removed because of consuming too much storage, not being used by the people who share the
|
|
|
|
|
server, or they are no longer secure. It is often good practice to 'do some spring cleaning' every now and
|
|
|
|
|
then and remove the packages that no longer serve you any purpose.
|
|
|
|
|
</mark>
|
|
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
|
<mark>
|
|
|
|
|
No packages were removed today.
|
|
|
|
|
</mark>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|