mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-01 02:40:40 +00:00
Robert Kaussow
43d7edca32
* refactor plugin system to use a class-based approach * disable some docstring linter errors and fix imports * cleanup * fix docs * add metavars to cli arguments for better helptext * add option to disable buildin rules * remove print * remove dead code
24 lines
724 B
Python
24 lines
724 B
Python
from ansible.parsing.yaml.objects import AnsibleMapping
|
|
|
|
from ansiblelater.standard import StandardBase
|
|
|
|
|
|
class CheckScmInSrc(StandardBase):
|
|
|
|
sid = "ANSIBLE0005"
|
|
description = "Use `scm:` key rather than `src: scm+url`"
|
|
helptext = "usage of `src: scm+url` not recommended"
|
|
version = "0.1"
|
|
types = ["rolesfile"]
|
|
|
|
def check(self, candidate, settings):
|
|
roles, errors = self.get_tasks(candidate, settings)
|
|
|
|
if not errors:
|
|
for role in roles:
|
|
if isinstance(role, AnsibleMapping):
|
|
if "+" in role.get("src"):
|
|
errors.append(self.Error(role["__line__"], self.helptext))
|
|
|
|
return self.Result(candidate.path, errors)
|