summaryrefslogtreecommitdiffstats
path: root/roles/jq/tasks
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-12-10 15:14:15 +0100
committerAhmed Abdelhalim <[email protected]>2025-12-10 15:14:15 +0100
commitc91b559e67d7ae8c518ff8014443244fbb411dcc (patch)
tree20a9c27a62e525f7dccf3829475523ccb7594eb0 /roles/jq/tasks
parent46b139efbb69911cd10fc5af79e86c945c4bc9ff (diff)
Add jq CLI to all installs
Diffstat (limited to 'roles/jq/tasks')
-rw-r--r--roles/jq/tasks/main.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/jq/tasks/main.yml b/roles/jq/tasks/main.yml
new file mode 100644
index 00000000..2fdf0ade
--- /dev/null
+++ b/roles/jq/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure jq is installed"
+ become: true
+ ansible.builtin.package:
+ name: "jq"
+ state: "present"