Skip to content

Commit

Permalink
Add git clean to allowed executable options (#4519)
Browse files Browse the repository at this point in the history
  • Loading branch information
s-hertel authored Feb 18, 2025
1 parent 45f2f70 commit 0e9b100
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions examples/playbooks/rule-command-instead-of-module-pass.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
ansible.builtin.command: git lfs install
changed_when: false

- name: Clean git repo (dry run)
ansible.builtin.command: git clean -n -d
changed_when: false

- name: Show systemctl service status
ansible.builtin.command: systemctl status systemd-timesyncd
changed_when: false
Expand Down
2 changes: 1 addition & 1 deletion src/ansiblelint/rules/command_instead_of_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class CommandsInsteadOfModulesRule(AnsibleLintRule):
}

_executable_options = {
"git": ["branch", "log", "lfs", "rev-parse"],
"git": ["branch", "log", "lfs", "rev-parse", "clean"],
"systemctl": [
"--version",
"get-default",
Expand Down

0 comments on commit 0e9b100

Please sign in to comment.