Fix metadata for Galaxy

Change-Id: Icffafc9268c9e0b7d2362f7ea03dfd75f28b6690
diff --git a/Makefile b/Makefile
index 7563f65..4d77b7f 100644
--- a/Makefile
+++ b/Makefile
@@ -23,17 +23,20 @@
     -d "{extends: default, rules: {line-length: {max: 99}}}" \
     -s $(YAML_FILES)
 
+# List of molecule files, not including base molecule.yml which isn't ansible format
+MOLECULE_FILES ?= $(shell find molecule -type f -name '*.yml' \! -name 'molecule.yml' -print )
+
 ansiblelint: ## lint check with ansible-lint
 	ansible-lint --version
 	ansible-lint -v .
-	ansible-lint -v molecule/*/*
+	ansible-lint -v $(MOLECULE_FILES)
 
 license: ## Check license with the reuse tool
 	reuse --version
 	reuse --root . lint
 
 help: ## Print help for each target
-	@echo netbox test targets
+	@echo enodebd test targets
 	@echo
 	@grep '^[[:alnum:]_-]*:.* ##' $(MAKEFILE_LIST) \
     | sort | awk 'BEGIN {FS=":.* ## "}; {printf "%-25s %s\n", $$1, $$2};'