diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-26 07:21:34 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-26 07:23:04 +0200 |
commit | 43e3c6bb22942276f513b840078d7c84066c3c3a (patch) | |
tree | e539aa44a521aeb0ee6ac16036feb71ae7c31488 | |
parent | 7d5d19e032c32d092f6003d7705f1806680d3405 (diff) | |
download | vyos-1x-43e3c6bb22942276f513b840078d7c84066c3c3a.tar.gz vyos-1x-43e3c6bb22942276f513b840078d7c84066c3c3a.zip |
Makefile: check which CLI scripts are not enabled to work with vyos-configd
-rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -77,7 +77,18 @@ vyxdp: $(MAKE) -C $(XDP_DIR) .PHONY: all -all: clean interface_definitions op_mode_definitions test j2lint vyshim +all: clean interface_definitions op_mode_definitions check test j2lint vyshim + +.PHONY: check +.ONESHELL: +check: + @echo "Checking which CLI scripts are not enabled to work with vyos-configd..." + @for file in `ls src/conf_mode` + do + if ! grep -q $$file data/configd-include.json; then + echo "* $$file" + fi + done .PHONY: clean clean: |