diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-02-23 19:32:54 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-02-23 19:36:18 +0100 |
| commit | c6493aebaa8442bdcde10ad2d7948ee825a9aabf (patch) | |
| tree | 27b5af758504e36af4b2edfed3dbfca7282e7f35 /roles/gradia/tasks | |
| parent | a71c972caa9a68e2cbc6e7ac7278e535458555a0 (diff) | |
Replace rnote with gradia and fix typo in teams role
Diffstat (limited to 'roles/gradia/tasks')
| -rw-r--r-- | roles/gradia/tasks/install-archlinux.yml | 8 | ||||
| -rw-r--r-- | roles/gradia/tasks/install-debian.yml | 7 | ||||
| -rw-r--r-- | roles/gradia/tasks/main.yml | 3 |
3 files changed, 18 insertions, 0 deletions
diff --git a/roles/gradia/tasks/install-archlinux.yml b/roles/gradia/tasks/install-archlinux.yml new file mode 100644 index 00000000..ab560d8d --- /dev/null +++ b/roles/gradia/tasks/install-archlinux.yml @@ -0,0 +1,8 @@ +--- +- name: "Ensure gradia is installed" + become: true + become_user: "aur_builder" + kewlfft.aur.aur: + name: "gradia" + state: "present" + use: "yay" diff --git a/roles/gradia/tasks/install-debian.yml b/roles/gradia/tasks/install-debian.yml new file mode 100644 index 00000000..42c81e24 --- /dev/null +++ b/roles/gradia/tasks/install-debian.yml @@ -0,0 +1,7 @@ +--- +- name: "Ensure gradia is installed via flathub" + community.general.flatpak: + name: "be.alexandervanhee.gradia" + remote: "flathub" + state: "present" + method: "user" diff --git a/roles/gradia/tasks/main.yml b/roles/gradia/tasks/main.yml new file mode 100644 index 00000000..71bcbd0d --- /dev/null +++ b/roles/gradia/tasks/main.yml @@ -0,0 +1,3 @@ +--- +- name: "Include OS-specific tasks" + ansible.builtin.include_tasks: "install-{{ ansible_facts['os_family'] | lower }}.yml" |
