upgrade.rst 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Upgrade scripts
  2. ===============
  3. Basics
  4. ------
  5. After each sysupgrade (including the initial installation), Gluon will execute all scripts
  6. under ``/lib/gluon/upgrade``. These scripts' filenames usually begin with a 3-digit number
  7. specifying the order of execution. Note that the script files need to be executable.
  8. To get an overview of the ordering of all scripts of all packages, the helper script ``contrib/lsupgrade.sh``
  9. in the Gluon repository can be used, which will print all upgrade scripts' filenames and directories. If executed
  10. on a TTY, the filename will be highlighted in green, the repository in blue and the package in red.
  11. Best practices
  12. --------------
  13. * Most upgrade scripts are written in Lua. This allows using lots of helper functions provided
  14. by Gluon, e.g. to access the site configuration or edit UCI configuration files.
  15. * Whenever possible, scripts shouldn't check if they are running for the first time, but just edit configuration
  16. files to achieve a valid configuration (without overwriting configuration changes made by the user where desirable).
  17. This allows using the same code to create the initial configuration and upgrade configurations on upgrades.
  18. * If it is unavoidable to run different code during the initial installation, the ``sysconfig.gluon_version`` variable
  19. can be checked. This variable is ``nil`` during the initial installation and contains the previously install Gluon
  20. version otherwise.
  21. Script ordering
  22. ---------------
  23. These are some guidelines for the script numbers:
  24. * ``0xx``: Basic ``sysconfig`` setup
  25. * ``1xx``: Basic system setup (including basic network configuration)
  26. * ``2xx``: Wireless setup
  27. * ``3xx``: Advanced network and system setup
  28. * ``4xx``: Extended network and system setup (e.g. mesh VPN and next-node)
  29. * ``5xx``: Miscellaneous (everything not fitting into any other category)
  30. * ``6xx`` .. ``8xx``: Currently unused
  31. * ``9xx``: Upgrade finalization