Fix metadata for Galaxy, lint
fix lint issue with tabs (correct, checking output) in molecule tests
Change-Id: Id4cdc9b5259f54a64933580c0a9093350d948e01
diff --git a/molecule/default/verify.yml b/molecule/default/verify.yml
index 596330b..d7cb7db 100644
--- a/molecule/default/verify.yml
+++ b/molecule/default/verify.yml
@@ -14,7 +14,7 @@
# Lint flags the checks as they execute every time, skip this with 'noqa 301'
- name: Check for A record
- command: # noqa 301
+ command: # noqa 301 no-tabs
cmd: "dig gw.example.com @127.0.0.1"
register: a_dig
failed_when: "'gw.example.com.\t\t3600\tIN\tA\t10.0.0.1' not in a_dig.stdout"
@@ -26,7 +26,7 @@
failed_when: "'gw.example.com.' not in ns_dig.stdout"
- name: Check for CNAME record
- command: # noqa 301
+ command: # noqa 301 no-tabs
cmd: "dig lpr.example.com @127.0.0.1"
register: cn_dig
failed_when: "'lpr.example.com.\t3600\tIN\tCNAME\tprinter.example.com.' not in cn_dig.stdout"