2024-01-25 20:40:15 +00:00
|
|
|
from ansiblelater.rule import RuleBase
|
2021-01-30 15:52:48 +00:00
|
|
|
|
|
|
|
|
2024-01-25 20:40:15 +00:00
|
|
|
class CheckDeprecated(RuleBase):
|
2024-01-27 18:56:35 +00:00
|
|
|
rid = "ANS999"
|
2021-01-30 15:52:48 +00:00
|
|
|
description = "Deprecated features should not be used"
|
2024-01-25 20:40:15 +00:00
|
|
|
helptext = "`{old}` is deprecated and should not be used anymore. Use `{new}` instead."
|
2021-01-30 15:52:48 +00:00
|
|
|
types = ["playbook", "task", "handler"]
|
|
|
|
|
|
|
|
def check(self, candidate, settings):
|
|
|
|
tasks, errors = self.get_normalized_tasks(candidate, settings, full=True)
|
|
|
|
|
|
|
|
if not errors:
|
|
|
|
for task in tasks:
|
|
|
|
if "skip_ansible_lint" in (task.get("tags") or []):
|
|
|
|
errors.append(
|
|
|
|
self.Error(
|
|
|
|
task["__line__"],
|
|
|
|
self.helptext.format(
|
|
|
|
old="skip_ansible_lint", new="skip_ansible_later"
|
2023-11-10 13:50:48 +00:00
|
|
|
),
|
2021-01-30 15:52:48 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
return self.Result(candidate.path, errors)
|