From 39652f17059c68d8a14fb2f378ba4aa0482b8422 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Sat, 16 Sep 2017 17:28:39 +0200 Subject: T395: Implement a numeric value validator --- debian/rules | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'debian') diff --git a/debian/rules b/debian/rules index d6d26c5c5..5c3aab7f6 100755 --- a/debian/rules +++ b/debian/rules @@ -2,6 +2,7 @@ DIR := debian/vyos-1x VYOS_SBIN_DIR := opt/vyatta/sbin/ +VYOS_LIBEXEC_DIR := opt/vyatta/libexec VYOS_CFG_TMPL_DIR := /opt/vyatta/share/vyatta-cfg/templates %: @@ -14,8 +15,13 @@ override_dh_auto_install: dh_install -pvyos-1x cd python; python3 setup.py install --install-layout=deb --root ../$(DIR); cd .. + # Install configuration scripts mkdir -p $(DIR)/$(VYOS_SBIN_DIR) cp -r src/conf-mode/* $(DIR)/$(VYOS_SBIN_DIR) + # Install validators + mkdir -p $(DIR)/$(VYOS_LIBEXEC_DIR)/validators + cp -r src/validators/* $(DIR)/$(VYOS_LIBEXEC_DIR)/validators + mkdir -p $(DIR)/$(VYOS_CFG_TMPL_DIR) cp -r templates/* $(DIR)/$(VYOS_CFG_TMPL_DIR) -- cgit v1.2.3