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 CheckBecomeUser(RuleBase):
|
2024-01-27 18:56:35 +00:00
|
|
|
rid = "ANS115"
|
2021-01-30 15:52:48 +00:00
|
|
|
description = "Become should be combined with become_user"
|
|
|
|
helptext = "the task has `become` enabled but `become_user` is missing"
|
|
|
|
types = ["playbook", "task", "handler"]
|
|
|
|
|
|
|
|
def check(self, candidate, settings):
|
|
|
|
tasks, errors = self.get_normalized_tasks(candidate, settings)
|
|
|
|
true_value = [True, "true", "True", "TRUE", "yes", "Yes", "YES"]
|
|
|
|
|
|
|
|
if not errors:
|
|
|
|
gen = (task for task in tasks if "become" in task)
|
|
|
|
for task in gen:
|
2023-08-07 08:35:35 +00:00
|
|
|
if task["become"] in true_value and "become_user" not in task:
|
2021-01-30 15:52:48 +00:00
|
|
|
errors.append(self.Error(task["__line__"], self.helptext))
|
|
|
|
|
|
|
|
return self.Result(candidate.path, errors)
|