2021-01-30 15:52:48 +00:00
|
|
|
from ansiblelater.standard import StandardBase
|
|
|
|
|
|
|
|
|
|
|
|
class CheckCommandHasChanges(StandardBase):
|
|
|
|
|
|
|
|
sid = "ANSIBLE0011"
|
|
|
|
description = "Commands should be idempotent"
|
|
|
|
helptext = (
|
|
|
|
"commands should only read while using `changed_when` or try to be "
|
|
|
|
"idempotent while using controls like `creates`, `removes` or `when`"
|
|
|
|
)
|
|
|
|
version = "0.1"
|
2023-06-28 07:14:39 +00:00
|
|
|
types = ["playbook", "task"]
|
2021-01-30 15:52:48 +00:00
|
|
|
|
|
|
|
def check(self, candidate, settings):
|
|
|
|
tasks, errors = self.get_normalized_tasks(candidate, settings)
|
|
|
|
commands = ["command", "shell", "raw"]
|
|
|
|
|
|
|
|
if not errors:
|
|
|
|
for task in tasks:
|
2023-02-10 07:51:17 +00:00
|
|
|
if task["action"]["__ansible_module__"] in commands and (
|
|
|
|
"changed_when" not in task and "when" not in task
|
|
|
|
and "when" not in task.get("__ansible_action_meta__", [])
|
|
|
|
and "creates" not in task["action"] and "removes" not in task["action"]
|
|
|
|
):
|
|
|
|
errors.append(self.Error(task["__line__"], self.helptext))
|
2021-01-30 15:52:48 +00:00
|
|
|
|
|
|
|
return self.Result(candidate.path, errors)
|