diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-09-16 17:28:39 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-09-16 17:28:39 +0200 |
commit | 39652f17059c68d8a14fb2f378ba4aa0482b8422 (patch) | |
tree | 3fbd7776b0c8dd764c0d3ac6217b8c0eed29ae07 /debian | |
parent | 42bee93f070d79a436f99e0d59a012f6201c7328 (diff) | |
download | vyos-1x-39652f17059c68d8a14fb2f378ba4aa0482b8422.tar.gz vyos-1x-39652f17059c68d8a14fb2f378ba4aa0482b8422.zip |
T395: Implement a numeric value validator
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 6 insertions, 0 deletions
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) |