summaryrefslogtreecommitdiffstats
path: root/roles/rnote/tasks
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-02-23 19:32:54 +0100
committerAhmed Abdelhalim <[email protected]>2026-02-23 19:36:18 +0100
commitc6493aebaa8442bdcde10ad2d7948ee825a9aabf (patch)
tree27b5af758504e36af4b2edfed3dbfca7282e7f35 /roles/rnote/tasks
parenta71c972caa9a68e2cbc6e7ac7278e535458555a0 (diff)
Replace rnote with gradia and fix typo in teams role
Diffstat (limited to 'roles/rnote/tasks')
-rw-r--r--roles/rnote/tasks/install-archlinux.yml6
-rw-r--r--roles/rnote/tasks/install-debian.yml7
-rw-r--r--roles/rnote/tasks/main.yml3
3 files changed, 0 insertions, 16 deletions
diff --git a/roles/rnote/tasks/install-archlinux.yml b/roles/rnote/tasks/install-archlinux.yml
deleted file mode 100644
index d1c355f7..00000000
--- a/roles/rnote/tasks/install-archlinux.yml
+++ /dev/null
@@ -1,6 +0,0 @@
----
-- name: "Ensure rnote is installed"
- become: true
- ansible.builtin.package:
- name: "rnote"
- state: "present"
diff --git a/roles/rnote/tasks/install-debian.yml b/roles/rnote/tasks/install-debian.yml
deleted file mode 100644
index 4126128c..00000000
--- a/roles/rnote/tasks/install-debian.yml
+++ /dev/null
@@ -1,7 +0,0 @@
----
-- name: "Ensure rnote is installed via flathub"
- community.general.flatpak:
- name: "com.github.flxzt.rnote"
- remote: "flathub"
- state: "present"
- method: "user"
diff --git a/roles/rnote/tasks/main.yml b/roles/rnote/tasks/main.yml
deleted file mode 100644
index 71bcbd0d..00000000
--- a/roles/rnote/tasks/main.yml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-- name: "Include OS-specific tasks"
- ansible.builtin.include_tasks: "install-{{ ansible_facts['os_family'] | lower }}.yml"