{% extends "base.html" %} {% block title %}Update Manager Configuration - Hermetic Suite{% endblock %} {% block content %}

Check Schedule

{% if schedule_info.error %}
Scheduling unavailable: {{ schedule_info.error }}

To enable scheduling, ensure the hsuite user has cron access. You can manually set up a cron job:

# Check for updates twice daily (6 AM and 6 PM) 0 6,18 * * * /opt/hsuite/venv/bin/python /opt/hsuite/plugins/update_manager/check_all.py
{% else %}

{% if schedule_info.current and schedule_info.current != 'disabled' %} Active Currently checking for updates {{ schedule_info.current_label|lower }}. {% else %} Inactive Automatic checking is disabled. Use manual checks or enable a schedule. {% endif %}

{% endif %}
Note: This schedule only checks for available updates. It does not automatically install them. Security updates should be reviewed before installation.

Tracked Servers

{% for server in servers %} {% set config = configs.get(server.id) %} {% endfor %}
Server IP Address Status Actions
{{ server.hostname or 'Unnamed' }} {{ server.ip_address }} {% if config and config.enabled %} Tracking {% else %} Not Tracked {% endif %} {% if config and config.enabled %}
{% else %}
{% endif %}
{% if not servers %}

No servers with SSH enabled found.

Enable SSH on servers in the Servers section to track updates.

{% endif %}

Important Notes

{% endblock %}