summaryrefslogtreecommitdiff
path: root/src/migration-scripts/vpp/6-to-7
diff options
context:
space:
mode:
authorNataliia S. <81954790+natali-rs1985@users.noreply.github.com>2026-02-26 13:31:36 +0200
committerGitHub <noreply@github.com>2026-02-26 13:31:36 +0200
commitbfb8537c4e79e18e960cf15064658d3ee50fd05a (patch)
treec959126616ff4df2c5cbcf277d18029570a20942 /src/migration-scripts/vpp/6-to-7
parent61d8e945ee356befde46c94cfed859d3e9f37d55 (diff)
parentda6065893865b01f7b1db1b9128ccf16aae3e1f0 (diff)
downloadvyos-1x-bfb8537c4e79e18e960cf15064658d3ee50fd05a.tar.gz
vyos-1x-bfb8537c4e79e18e960cf15064658d3ee50fd05a.zip
Merge pull request #5013 from natali-rs1985/T8318
vpp: T8318: Consolidate recent migrations into a single downgrade migration (target version 6)
Diffstat (limited to 'src/migration-scripts/vpp/6-to-7')
-rw-r--r--src/migration-scripts/vpp/6-to-725
1 files changed, 0 insertions, 25 deletions
diff --git a/src/migration-scripts/vpp/6-to-7 b/src/migration-scripts/vpp/6-to-7
deleted file mode 100644
index 4cb4b07fa..000000000
--- a/src/migration-scripts/vpp/6-to-7
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright VyOS maintainers and contributors <maintainers@vyos.io>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public License
-# along with this library. If not, see <http://www.gnu.org/licenses/>.
-
-# Rename acl 'macip' node to 'mac' (T8252)
-
-
-from vyos.configtree import ConfigTree
-
-base = ['vpp', 'acl']
-
-def migrate(config: ConfigTree) -> None:
- if config.exists(base + ['macip']):
- config.rename(base + ['macip'], 'mac')