mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-01 02:40:40 +00:00
25 lines
897 B
Python
25 lines
897 B
Python
from ansiblelater.standard import StandardBase
|
|
|
|
|
|
class CheckNamedTask(StandardBase):
|
|
|
|
sid = "ANSIBLE0006"
|
|
description = "Tasks and handlers must be named"
|
|
helptext = "module '{module}' used without or empty `name` attribute"
|
|
version = "0.1"
|
|
types = ["playbook", "task", "handler"]
|
|
|
|
def check(self, candidate, settings):
|
|
tasks, errors = self.get_normalized_tasks(candidate, settings)
|
|
exclude_modules = settings["ansible"]["named-task"]["exclude"]
|
|
|
|
if not errors:
|
|
for task in tasks:
|
|
module = task["action"]["__ansible_module__"]
|
|
if ("name" not in task or not task["name"]) and module not in exclude_modules:
|
|
errors.append(
|
|
self.Error(task["__line__"], self.helptext.format(module=module))
|
|
)
|
|
|
|
return self.Result(candidate.path, errors)
|