From 454cabb8bca9c9fc2f9ef00410b2b9d5c61014d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Ricart?= Date: Thu, 27 Feb 2025 15:23:59 +0100 Subject: [PATCH] [DEBIAN] add netmask in routes --- template/debian.rst.j2 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/template/debian.rst.j2 b/template/debian.rst.j2 index 655b52f..6444f8f 100644 --- a/template/debian.rst.j2 +++ b/template/debian.rst.j2 @@ -15,11 +15,11 @@ interface adresses routes ###### -============ =============== ============== -destination gateway interface -============ =============== =============={% for route in routes %} -{{ "{:<12}".format(route["destination"]) }} {{ "{:<15}".format(route["gateway"]) }} {{ route["iface"] }}{% endfor %} -============ =============== ============== +============ =============== =============== ============== +destination netmask gateway interface +============ =============== =============== =============={% for route in routes %} +{{ "{:<12}".format(route["destination"]) }} {{ "{:<15}".format(route["genmask"]) }} {{ "{:<15}".format(route["gateway"]) }} {{ route["iface"] }}{% endfor %} +============ =============== =============== ============== services --------