v2015.1.rst 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. Gluon 2015.1 (in development)
  2. =============================
  3. Added (and removed) hardware support
  4. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  5. New features
  6. ~~~~~~~~~~~~
  7. Bugfixes
  8. ~~~~~~~~
  9. Site changes
  10. ~~~~~~~~~~~~
  11. * ``site.conf``
  12. - ``hostname_prefix`` is now optional, and is concatenated directly with the
  13. generated node ID, in particular no hyphen is inserted anymore. If you want
  14. to keep the old behaviour, you have to append the hyphen to the
  15. ``hostname_prefix`` field of your ``site.conf``.
  16. - ``mesh_vpn_fastd``: The default peer group name ``backbone`` isn't hardcoded anymore, any
  17. group name can be used. Instead, the ``fastd_mesh_vpn`` table must now contain an element ``groups``,
  18. for example::
  19. fastd_mesh_vpn = {
  20. methods = {'salsa2012+umac'},
  21. mtu = 1426,
  22. groups = {
  23. backbone = {
  24. limit = 2,
  25. peers = {
  26. -- ...
  27. }
  28. }
  29. }
  30. }
  31. - ``roles``: The display strings for the node roles aren't configured in the ``site.conf`` anymore, but
  32. in the site i18n files. The ``site.conf`` section becomes::
  33. roles = {
  34. default = 'foo',
  35. list = {
  36. 'foo',
  37. 'bar',
  38. }
  39. }
  40. The display string use i18n message IDs like ``gluon-luci-node-role:role:foo`` and ``gluon-luci-node-role:role:bar``.
  41. * ``site.mk``
  42. - ``gluon-mesh-batman-adv-15`` is now the recommended batman-adv version for new Gluon deployments.
  43. - The packages ``gluon-setup-mode`` and ``gluon-config-mode-core`` must now be
  44. added to ``GLUON_SITE_PACKAGES`` explicitly (to allow replacing them with
  45. community-specific implementations).
  46. Internals
  47. ~~~~~~~~~
  48. Known Issues
  49. ~~~~~~~~~~~~