{% extends "base.html" %} {% block content %} {% from 'include/input_macros.html' import input, select %} {% include 'include/del_confirm.html' %}
{% include 'include/admin_users.html' %}
{% for group in groups %} {% if group.1 == "All" %} {% else %} {% endif %} {% endfor %}
Name Description
{{ group.1 }} {{ group.2 }} {% set id = 'name-' + group.0|string() %} {{ input(id, value=group.1) }} {% set id = 'descript-' + group.0|string() %} {% if group.2 != "None" %} {{ input(id, value=group.2, size='60') }} {% else %} {{ input(id, value='', size='60') }} {% endif %}

+ Add

How to setup groups you can watch in this video here
{% include 'include/admin_servers.html' %}
{% include 'include/admin_ssh.html' %}
{% include 'include/admin_telegram.html' %}
{% include 'include/admin_settings.html' %}
{% for s in services %} {% endfor %}
Service Actions Description
{% if s.1.0 == 'active' %} {% else %} {% if s.1.0 == 'inactive' or s.1.0 == 'failed' %} {% else %} {% endif %} {% endif %} {{s.0}} {{ s.2 }}
You can read about services here
{% set current_ver = versions.0 %} {% set new_ver = versions.1 %} {% set current_ver_without_dots = versions.2 %} {% set new_ver_without_dots = versions.3 %} {% for s in services %} {% if s.0 == 'smon' or s.0 == 'checker_haproxy' or s.0 == 'keep_alive' or s.0 == 'metrics_haproxy' %} {% set is_need_update = 0 %} {% if s.0 == 'smon' %} {% set service_name = 'SMON' %} {% set service_link = 'smon' %} {% if s.3|int() < smon_ver|int() %} {% set is_need_update = 1 %} {% endif %} {% elif s.0 == 'checker_haproxy' %} {% set service_name = 'Checker' %} {% set service_link = 'checker' %} {% if s.3|int() < checker_ver|int() %} {% set is_need_update = 1 %} {% endif %} {% elif s.0 == 'keep_alive' %} {% set service_name = 'Auto start' %} {% set service_link = 'auto_start' %} {% if s.3|int() < keep_ver|int() %} {% set is_need_update = 1 %} {% endif %} {% elif s.0 == 'metrics_haproxy' %} {% set service_name = 'Metrics' %} {% set service_link = 'metrics' %} {% if s.3|int() < metrics_ver|int() %} {% set is_need_update = 1 %} {% endif %} {% endif %} {% endif %} {% endfor %}
Service Currnet version Last version
HAProxy-WI {{current_ver}} {{new_ver}} {% if new_ver_without_dots > current_ver_without_dots and new_ver != "Sorry cannot get current version" %} Update {% endif %}
{{service_name}} {% if s.3 != '* is not installed' %} {{s.3}} {% endif %} {% if s.0 == 'smon' %} {{smon_ver}} {% elif s.0 == 'checker_haproxy' %} {{checker_ver}} {% elif s.0 == 'keep_alive' %} {{keep_ver}} {% elif s.0 == 'metrics_haproxy' %} {{metrics_ver}} {% endif %} {% if s.3 != '* is not installed' %} {% if is_need_update %} Update {% endif %} {% else %} {{service_name}} service is not installed Read about installation {% endif %}
Note: For update you have to use HAProxy-WI repository. How start use repository read here

If server uses proxy to connection Internet add proxy settings in yum.conf

Read more about update in docs and changelog
{% include 'include/admin_backup.html' %}
{% include 'include/mon_installation.html' %}
{% include 'include/admins_dialogs.html' %} {% include 'include/change_pass_form.html' %} {% endblock %}