diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-04-20 22:36:36 +0200 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-04-20 22:38:03 +0200 |
| commit | 2acaf8154f0ac72a1886d1e1b68391dc05ef768a (patch) | |
| tree | 2ab375cc2c2942b3b15c1672203ce64b639b89ae | |
| parent | 040847f155c7701256017c6d307e7758a7d0f320 (diff) | |
| download | vyos-1x-2acaf8154f0ac72a1886d1e1b68391dc05ef768a.tar.gz vyos-1x-2acaf8154f0ac72a1886d1e1b68391dc05ef768a.zip | |
T8532: install validate-value to correct location
Fix install location for validate-value which must be in $(VYOS_LIBEXEC_DIR)
instead of $(VYOS_LIBEXEC_DIR)/validators.
Co-authored-by: John Estabrook <jestabro@vyos.io>
| -rwxr-xr-x | debian/rules | 2 | ||||
| -rw-r--r-- | debian/vyos-1x.install | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 7e554010a..332a32ecf 100755 --- a/debian/rules +++ b/debian/rules @@ -193,7 +193,7 @@ override_dh_auto_install: # OCaml binaries from former vyos-utils package cp $(VYOS_OCAML_TOOLS)/numeric $(DIR)/$(VYOS_LIBEXEC_DIR)/validators - cp $(VYOS_OCAML_TOOLS)/validate-value $(DIR)/$(VYOS_LIBEXEC_DIR)/validators + cp $(VYOS_OCAML_TOOLS)/validate-value $(DIR)/$(VYOS_LIBEXEC_DIR) cp $(VYOS_OCAML_TOOLS)/file-path $(DIR)/$(VYOS_LIBEXEC_DIR)/validators cp $(VYOS_OCAML_TOOLS)/url $(DIR)/$(VYOS_LIBEXEC_DIR)/validators cp $(VYOS_OCAML_TOOLS)/list_interfaces $(DIR)/$(VYOS_LIBEXEC_DIR)/completion diff --git a/debian/vyos-1x.install b/debian/vyos-1x.install index 41fd77839..55369aebe 100644 --- a/debian/vyos-1x.install +++ b/debian/vyos-1x.install @@ -39,6 +39,7 @@ usr/libexec/vyos/op_mode usr/libexec/vyos/services usr/libexec/vyos/system usr/libexec/vyos/validators +usr/libexec/vyos/validate-value usr/libexec/vyos/vyconf usr/libexec/vyos/*.py usr/libexec/vyos/*.sh |
