On 2026-03-10 13:09, Gabriel Goller wrote: > This debian package contains the jinja template files used to generate > the frr config. Currently only the fabrics template files are here, the > rest will be added in later commits. When installing this package the > templates will be installed to `/usr/share/proxmox-frr/templates/`. > `proxmox-frr` will then use `include_str!` to embed the templates into > the binary. > > This package will only be published to the `devel` channel. > > Co-authored-by: Stefan Hanreich <[email protected]> > Signed-off-by: Gabriel Goller <[email protected]> > --- > Makefile | 8 +++ > proxmox-frr-templates/.gitignore | 1 + > proxmox-frr-templates/Makefile | 50 +++++++++++++++++++ > proxmox-frr-templates/debian/changelog | 5 ++ > proxmox-frr-templates/debian/control | 17 +++++++ > proxmox-frr-templates/debian/copyright | 18 +++++++ > .../debian/proxmox-frr-templates.install | 1 + > proxmox-frr-templates/debian/rules | 5 ++ > .../templates/access_list.jinja | 6 +++ ^ I hope I didn't miss anything, but it doesn't look like this one is used anywhere
> .../templates/access_lists.jinja | 6 +++ > proxmox-frr-templates/templates/fabricd.jinja | 29 +++++++++++ > .../templates/frr.conf.jinja | 5 ++ > .../templates/interface.jinja | 9 ++++ > proxmox-frr-templates/templates/ospfd.jinja | 18 +++++++ > .../templates/protocol_routemaps.jinja | 10 ++++ > .../templates/route_maps.jinja | 20 ++++++++ > 16 files changed, 208 insertions(+) > create mode 100644 proxmox-frr-templates/.gitignore > create mode 100644 proxmox-frr-templates/Makefile > create mode 100644 proxmox-frr-templates/debian/changelog > create mode 100644 proxmox-frr-templates/debian/control > create mode 100644 proxmox-frr-templates/debian/copyright > create mode 100644 proxmox-frr-templates/debian/proxmox-frr-templates.install > create mode 100755 proxmox-frr-templates/debian/rules > create mode 100644 proxmox-frr-templates/templates/access_list.jinja > create mode 100644 proxmox-frr-templates/templates/access_lists.jinja > create mode 100644 proxmox-frr-templates/templates/fabricd.jinja > create mode 100644 proxmox-frr-templates/templates/frr.conf.jinja > create mode 100644 proxmox-frr-templates/templates/interface.jinja > create mode 100644 proxmox-frr-templates/templates/ospfd.jinja > create mode 100644 proxmox-frr-templates/templates/protocol_routemaps.jinja > create mode 100644 proxmox-frr-templates/templates/route_maps.jinja [..]
