Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-12-13 | ddclient: T5144: Fix migration to avoid config name conflict | Indrajit Raychaudhuri | |
When migrating from `service dns dynamic interface <interface> ...` to `service dns dynamic address <address> ...`, the config name can potentially have a conflict when `address == 'web'`. Although the `/run/ddclient/ddclient.conf` that was generated earlier was incorrect, one could still potentially have misconfigured VyOS config without realizing it. We now append the old <interface> name to the config name to avoid conflict. | |||
2023-08-02 | T5427: Fix migration script arguments len expects 2 args | Viacheslav Hletenko | |
The script's name is always provided as the first argument sys.argv[0] Expected length for argv is 2 (script itself + config file) Change: 'if (len(argv) < 1)' to 'if len(argv) < 2' | |||
2023-06-04 | dns: T5144: Apply migration for dynamic dns path update | Indrajit Raychaudhuri | |
Create migration and bump package version from 0 -> 1 for dynamic dns |