From 737d72dc07e630231202fe1ae513c6195b6d250b Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Tue, 29 May 2018 23:07:52 +0200 Subject: T667: add a migration script for converting "system gateway-address" to "protocols static route 0.0.0.0". Code-wise that option was in vyatta-cfg-quagga, but the syntax is inside "system", so let's keep the script under system too. --- debian/rules | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 31deefeff..749b0d46b 100755 --- a/debian/rules +++ b/debian/rules @@ -7,6 +7,8 @@ VYOS_LIBEXEC_DIR := usr/libexec/vyos VYOS_CFG_TMPL_DIR := /opt/vyatta/share/vyatta-cfg/templates VYOS_OP_TMPL_DIR := /opt/vyatta/share/vyatta-op/templates +MIGRATION_SCRIPTS_DIR := /opt/vyatta/etc/config-migrate/migrate/ + %: dh $@ --with python3, --with quilt @@ -40,8 +42,14 @@ override_dh_auto_install: # Install helper scripts cp -r src/helpers/* $(DIR)/$(VYOS_LIBEXEC_DIR)/ + # Install migration scripts + mkdir -p $(DIR)/$(MIGRATION_SCRIPTS_DIR) + cp -r src/migration-scripts/* $(DIR)/$(MIGRATION_SCRIPTS_DIR) + + # Install configuration command definitions mkdir -p $(DIR)/$(VYOS_CFG_TMPL_DIR) cp -r templates-cfg/* $(DIR)/$(VYOS_CFG_TMPL_DIR) + # Install operational command definitions mkdir -p $(DIR)/$(VYOS_OP_TMPL_DIR) cp -r templates-op/* $(DIR)/$(VYOS_OP_TMPL_DIR) -- cgit v1.2.3