summaryrefslogtreecommitdiffstats
path: root/roles/rnote
diff options
context:
space:
mode:
Diffstat (limited to 'roles/rnote')
-rw-r--r--roles/rnote/meta/argument_specs.yml6
-rw-r--r--roles/rnote/meta/main.yml17
-rw-r--r--roles/rnote/tasks/main.yml6
3 files changed, 29 insertions, 0 deletions
diff --git a/roles/rnote/meta/argument_specs.yml b/roles/rnote/meta/argument_specs.yml
new file mode 100644
index 00000000..a7ec1084
--- /dev/null
+++ b/roles/rnote/meta/argument_specs.yml
@@ -0,0 +1,6 @@
+---
+argument_specs:
+ main:
+ short_description: "Install rnote on Linux distribution"
+ description: "Install rnote on Linux distribution"
+ options: {}
diff --git a/roles/rnote/meta/main.yml b/roles/rnote/meta/main.yml
new file mode 100644
index 00000000..b768546a
--- /dev/null
+++ b/roles/rnote/meta/main.yml
@@ -0,0 +1,17 @@
+---
+dependencies: []
+galaxy_info:
+ author: "a14m"
+ description: "Install curl"
+ license: "MIT"
+ min_ansible_version: "2.18"
+ platforms:
+ - name: "ArchLinux"
+ versions:
+ - "all"
+ - name: "Ubuntu"
+ versions:
+ - "noble"
+ - name: "Debian"
+ versions:
+ - "bookworm"
diff --git a/roles/rnote/tasks/main.yml b/roles/rnote/tasks/main.yml
new file mode 100644
index 00000000..d1c355f7
--- /dev/null
+++ b/roles/rnote/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure rnote is installed"
+ become: true
+ ansible.builtin.package:
+ name: "rnote"
+ state: "present"