summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-11-11 15:38:59 +0100
committerAhmed Abdelhalim <[email protected]>2025-11-11 15:38:59 +0100
commit004c7ecbbf8768955e964ef4323566079b22603d (patch)
tree22f35cdbb7157d335a231520fc0969a0bd41b45c /roles
parenteccbdf83415163006dc4761feb1284775d484aeb (diff)
Add neomutt email client role w/testing
Diffstat (limited to 'roles')
-rw-r--r--roles/neomutt/meta/argument_specs.yml6
-rw-r--r--roles/neomutt/meta/main.yml18
-rw-r--r--roles/neomutt/tasks/main.yml6
3 files changed, 30 insertions, 0 deletions
diff --git a/roles/neomutt/meta/argument_specs.yml b/roles/neomutt/meta/argument_specs.yml
new file mode 100644
index 00000000..50d05e9f
--- /dev/null
+++ b/roles/neomutt/meta/argument_specs.yml
@@ -0,0 +1,6 @@
+---
+argument_specs:
+ main:
+ short_description: "Install neomutt on Linux distribution"
+ description: "Install neomutt on Linux distribution"
+ options: {}
diff --git a/roles/neomutt/meta/main.yml b/roles/neomutt/meta/main.yml
new file mode 100644
index 00000000..c4aac070
--- /dev/null
+++ b/roles/neomutt/meta/main.yml
@@ -0,0 +1,18 @@
+---
+dependencies: []
+galaxy_info:
+ author: "a14m"
+ description: "Install neomutt"
+ company: "kartoffeln.work GmbH."
+ license: "MIT"
+ min_ansible_version: "2.18"
+ platforms:
+ - name: "ArchLinux"
+ versions:
+ - "all"
+ - name: "Ubuntu"
+ versions:
+ - "noble"
+ - name: "Debian"
+ versions:
+ - "bookworm"
diff --git a/roles/neomutt/tasks/main.yml b/roles/neomutt/tasks/main.yml
new file mode 100644
index 00000000..78a6dc49
--- /dev/null
+++ b/roles/neomutt/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure neomutt is installed"
+ become: true
+ ansible.builtin.package:
+ name: "neomutt"
+ state: "present"