diff options
author | Christian Breunig <christian@breunig.cc> | 2023-02-12 20:55:16 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-02-12 20:55:16 +0100 |
commit | bd9416a6aa9d5d0a746dc2cebc8d0330fd27d1a2 (patch) | |
tree | 6307fdc8ae2627a45fe1abd5965a51ec9b753aac /src/migration-scripts/interfaces/1-to-2 | |
parent | 4a4b25cba424347e2d114b37b079c31441fc011e (diff) | |
download | vyos-1x-bd9416a6aa9d5d0a746dc2cebc8d0330fd27d1a2.tar.gz vyos-1x-bd9416a6aa9d5d0a746dc2cebc8d0330fd27d1a2.zip |
T5001: Replace links to the phabricator site
Replace links to the phabricator site from https://phabricator.vyos.net to
https://vyos.dev
Diffstat (limited to 'src/migration-scripts/interfaces/1-to-2')
-rwxr-xr-x | src/migration-scripts/interfaces/1-to-2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/migration-scripts/interfaces/1-to-2 b/src/migration-scripts/interfaces/1-to-2 index 050137318..c75404d85 100755 --- a/src/migration-scripts/interfaces/1-to-2 +++ b/src/migration-scripts/interfaces/1-to-2 @@ -2,7 +2,7 @@ # Change syntax of bond interface # - move interface based bond-group to actual bond (de-nest) -# https://phabricator.vyos.net/T1614 +# https://vyos.dev/T1614 import sys from vyos.configtree import ConfigTree @@ -40,7 +40,7 @@ else: # some combinations were allowed in the past from a CLI perspective # but the kernel overwrote them - remove from CLI to not confuse the users. # In addition new consitency checks are in place so users can't repeat the - # mistake. One of those nice issues is https://phabricator.vyos.net/T532 + # mistake. One of those nice issues is https://vyos.dev/T532 for bond in config.list_nodes(base): if config.exists(base + [bond, 'arp-monitor', 'interval']) and config.exists(base + [bond, 'mode']): mode = config.return_value(base + [bond, 'mode']) |