doc_infra/template/debian.rst.j2
Michaël Ricart 161865af19
Some checks failed
/ test (push) Failing after 11s
colorise services
2025-02-17 13:18:14 +01:00

22 lines
810 B
Django/Jinja

{% include "base.rst.j2" %}
network
-------
ip
##
========= ==============
interface adresses
========= =============={% for interface in ip %}
{{ "{:<10}".format(interface["ifname"]) }} {% for ip in interface["addr_info"] %} {{ ip["local"] }}/{{ ip["prefixlen"]}}{% endfor %}
{% endfor %}========= ==============
services
--------
================================================== ======= ==============
service state description
================================================== ======= =============={% for svc in services %}
{{ "{:<50}".format(svc["unit"][:49]) }} {{ "{:<7}".format(svc["sub"].replace("running",":green:`running`)) }} {{ svc["description"] }}{% endfor %}
================================================== ======= ==============