diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-06-16 21:26:38 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-06-16 21:26:38 +0200 |
commit | fc2cc0f9b660408d5fc0cffcaffc33bfbc8ca5f2 (patch) | |
tree | 3e560d1d3ab7d587b8fc53147c6985972b3bea96 /debian | |
parent | 9bf7d03ff7342e7f87710df6bcc15beceed9582c (diff) | |
download | vyos-1x-fc2cc0f9b660408d5fc0cffcaffc33bfbc8ca5f2.tar.gz vyos-1x-fc2cc0f9b660408d5fc0cffcaffc33bfbc8ca5f2.zip |
T1431: initial implementation of the HTTP API.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index ff2d205ba..b06117922 100755 --- a/debian/rules +++ b/debian/rules @@ -10,6 +10,7 @@ VYOS_OP_TMPL_DIR := /opt/vyatta/share/vyatta-op/templates MIGRATION_SCRIPTS_DIR := /opt/vyatta/etc/config-migrate/migrate/ SYSTEM_SCRIPTS_DIR := usr/libexec/vyos/system +SERVICES_DIR := usr/libexec/vyos/services %: dh $@ --with python3, --with quilt @@ -53,6 +54,10 @@ override_dh_auto_install: mkdir -p $(DIR)/$(SYSTEM_SCRIPTS_DIR) cp -r src/system/* $(DIR)/$(SYSTEM_SCRIPTS_DIR) + # Install system services + mkdir -p $(DIR)/$(SERVICES_DIR) + cp -r src/services/* $(DIR)/$(SERVICES_DIR) + # Install configuration command definitions mkdir -p $(DIR)/$(VYOS_CFG_TMPL_DIR) cp -r templates-cfg/* $(DIR)/$(VYOS_CFG_TMPL_DIR) |