diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-03-22 07:11:00 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-03-22 07:11:02 +0100 |
commit | dae259c5dbb6146f584251fe9a39a1a56cf926be (patch) | |
tree | 629a94b6f650b1841d0c55169b8eee1041e9cbca | |
parent | 3584691b35f35e40a1bfc22c34da031141fd0dfa (diff) | |
download | vyos-1x-dae259c5dbb6146f584251fe9a39a1a56cf926be.tar.gz vyos-1x-dae259c5dbb6146f584251fe9a39a1a56cf926be.zip |
qos: T4284: delete traffic-policy CLI path via Makefile
Implementation is still work in progress, as such the CLI XML definitions are
published but the Python code does not work. In this case we must ensure XML
backed node.def files are deleted after generation so they do not conflict with
the current vyatta-cfg-qos implementation.
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -33,6 +33,7 @@ interface_definitions: $(config_xml_obj) # T4284 neq QoS implementation is not yet live find $(TMPL_DIR)/interfaces -name traffic-policy -type d -exec rm -rf {} \; find $(TMPL_DIR)/interfaces -name redirect -type d -exec rm -rf {} \; + rm -rf $(TMPL_DIR)/traffic-policy rm -rf $(TMPL_DIR)/interfaces/input # XXX: test if there are empty node.def files - this is not allowed as these |