summaryrefslogtreecommitdiff
path: root/src/migration-scripts/interfaces/1-to-2
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-02-12 21:00:53 +0100
committerChristian Breunig <christian@breunig.cc>2023-02-12 21:00:53 +0100
commitb6290329f2d6f5d05a8ff577f0be8a7e0f0ebdee (patch)
treecb716c732539224c1d264b9f35fac159bf70f1c0 /src/migration-scripts/interfaces/1-to-2
parentc99c1127d3bc49b67e472e03fcd7f9930407f20d (diff)
downloadvyos-1x-b6290329f2d6f5d05a8ff577f0be8a7e0f0ebdee.tar.gz
vyos-1x-b6290329f2d6f5d05a8ff577f0be8a7e0f0ebdee.zip
T5001: Replace links to the phabricator site
Replace links to the phabricator site from https://phabricator.vyos.net to https://vyos.dev (cherry-picked form commit bd9416a6aa9d5d0a746dc2cebc8d0330fd27d1a2)
Diffstat (limited to 'src/migration-scripts/interfaces/1-to-2')
-rwxr-xr-xsrc/migration-scripts/interfaces/1-to-24
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'])