diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-06-08 12:00:11 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-06-08 12:00:11 +0200 |
commit | 6acc5f6cb03f553141b0442f5e01cbf47b8e7833 (patch) | |
tree | 1f881de6841b6ec6c5a1550c2cab066de8b6330d /debian/rules | |
parent | 9afd3a8607fe5ce53f3756ea1c2c7045cd7c67b3 (diff) | |
download | vyos-1x-6acc5f6cb03f553141b0442f5e01cbf47b8e7833.tar.gz vyos-1x-6acc5f6cb03f553141b0442f5e01cbf47b8e7833.zip |
T689: add a basic library for working with network interfaces and support for interface types to the completion script.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index 5bb6b5371..d284471ec 100755 --- a/debian/rules +++ b/debian/rules @@ -4,6 +4,7 @@ DIR := debian/vyos-1x VYOS_SBIN_DIR := usr/sbin/ VYOS_BIN_DIR := usr/bin/ VYOS_LIBEXEC_DIR := usr/libexec/vyos +VYOS_DATA_DIR := /usr/share/vyos VYOS_CFG_TMPL_DIR := /opt/vyatta/share/vyatta-cfg/templates VYOS_OP_TMPL_DIR := /opt/vyatta/share/vyatta-op/templates @@ -54,3 +55,7 @@ override_dh_auto_install: # Install operational command definitions mkdir -p $(DIR)/$(VYOS_OP_TMPL_DIR) cp -r templates-op/* $(DIR)/$(VYOS_OP_TMPL_DIR) + + # Install data files + mkdir -p $(DIR)/$(VYOS_DATA_DIR) + cp -r data/* $(DIR)/$(VYOS_DATA_DIR) |