diff options
author | Christian Breunig <christian@breunig.cc> | 2024-12-14 09:10:07 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-12-14 09:11:23 +0100 |
commit | d8f20e7ccd15e42f721d65d96a9e0a1634d89c62 (patch) | |
tree | 2bf7f979f72c13b85bb14645d0ecd3b815c672f2 /docs | |
parent | 424e87276d6d770183e1cd38d68a23c18f87adc7 (diff) | |
download | vyos-documentation-d8f20e7ccd15e42f721d65d96a9e0a1634d89c62.tar.gz vyos-documentation-d8f20e7ccd15e42f721d65d96a9e0a1634d89c62.zip |
debugging: document new config migration helper
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contributing/debugging.rst | 51 |
1 files changed, 36 insertions, 15 deletions
diff --git a/docs/contributing/debugging.rst b/docs/contributing/debugging.rst index e03f3f81..e443feee 100644 --- a/docs/contributing/debugging.rst +++ b/docs/contributing/debugging.rst @@ -131,28 +131,49 @@ Useful commands are: Config Migration Scripts ------------------------ -When writing a new configuration migrator it may happen that you see an error -when you try to invoke it manually on a development system. This error will -look like: +Starting with VyOS 1.5 a new mechanism is used for config migration whichwill improve +migration performance. New migrators only exist in the new format with a migration() +function. + +.. code-block:: python + + from vyos.configtree import ConfigTree + base = ['vpn', 'ipsec'] + def migrate(config: ConfigTree) -> None: + if not config.exists(base): + # Nothing to do + return + # do your stuff here + +New style migrations scripts can no longer be executed on their own. The new +handler of the entire migration subsystem on the other hand comes with a handy +test kit: .. code-block:: none - vyos@vyos:~$ /opt/vyatta/etc/config-migrate/migrate/ssh/0-to-1 /tmp/config.boot - Traceback (most recent call last): - File "/opt/vyatta/etc/config-migrate/migrate/ssh/0-to-1", line 31, in <module> - config = ConfigTree(config_file) - File "/usr/lib/python3/dist-packages/vyos/configtree.py", line 134, in __init__ - raise ValueError("Failed to parse config: {0}".format(msg)) - ValueError: Failed to parse config: Syntax error on line 240, character 1: Invalid syntax. + vyos@vyos:~$ /usr/libexec/vyos/run-config-migration.py --help + usage: run-config-migration.py [-h] [--test-script TEST_SCRIPT] [--output-file OUTPUT_FILE] [--force] config_file + + positional arguments: + config_file configuration file to migrate -The reason is that the configuration migration backend is rewritten and uses -a new form of "magic string" which is applied on demand when real config -migration is run on boot. When running individual migrators for testing, -you need to convert the "magic string" on your own by: + options: + -h, --help show this help message and exit + --test-script TEST_SCRIPT + test named script + --output-file OUTPUT_FILE + write to named output file instead of config file + --force force run of all migration scripts + + +So in order to test your migrator you can run this as simple as: .. code-block:: none - vyos@vyos:~$ /usr/libexec/vyos/run-config-migration.py --virtual --set-vintage vyos /tmp/config.boot + vyos@vyos:~$ /usr/libexec/vyos/run-config-migration.py --test-script /opt/vyatta/etc/config-migrate/migrate/quagga/11-to-12 --output-file /tmp/foo /tmp/static-route-basic + vyos@vyos:~$ cat /tmp/foo + +Where `/tmp/foo` will contain the migrated configuration. Configuration Error on System Boot ---------------------------------- |