Add role neomutt
This commit is contained in:
parent
68530bfed5
commit
1bf14a9fc1
3 changed files with 18 additions and 0 deletions
|
@ -34,3 +34,4 @@
|
|||
- {role: gitea-backup, tags: gitea-backup}
|
||||
- {role: gaming, tags: gaming}
|
||||
- {role: etckeeper, tags: etckeeper}
|
||||
- {role: neomutt, tags: neomutt}
|
||||
|
|
3
roles/neomutt/meta/main.yml
Normal file
3
roles/neomutt/meta/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
dependencies:
|
||||
- role: check-sudo
|
14
roles/neomutt/tasks/main.yml
Normal file
14
roles/neomutt/tasks/main.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
- name: Install packages (Archlinux)
|
||||
become: true
|
||||
pacman:
|
||||
name:
|
||||
- neomutt
|
||||
when: ansible_facts['distribution'] == 'Archlinux'
|
||||
|
||||
- name: Install packages (Debian)
|
||||
become: true
|
||||
apt:
|
||||
name:
|
||||
- neomutt
|
||||
when: ansible_facts['distribution'] == 'Debian'
|
Loading…
Add table
Reference in a new issue