diff options
| author | Ahmed AbdelHalim <[email protected]> | 2025-09-20 22:01:54 +0200 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2025-09-20 22:01:54 +0200 |
| commit | a501f6887006e6b48068a30126d67906ee77ea78 (patch) | |
| tree | 10f7a729f3593ff0fd6286160c2afd641adc59ec /roles/gcc/tasks | |
| parent | 8feee75d97eeddbb9806ff475ba660dc12b5eb92 (diff) | |
Move gcc to it's own role and add it as homebrew dependency
Diffstat (limited to 'roles/gcc/tasks')
| -rw-r--r-- | roles/gcc/tasks/main.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/gcc/tasks/main.yml b/roles/gcc/tasks/main.yml new file mode 100644 index 00000000..92cb96dd --- /dev/null +++ b/roles/gcc/tasks/main.yml @@ -0,0 +1,9 @@ +--- +- name: "Include OS-specific variables" + ansible.builtin.include_vars: "{{ ansible_os_family | lower }}.yml" + +- name: "Ensure gcc is installed" + become: true + ansible.builtin.package: + name: "{{ gcc_package }}" + state: "present" |
