mutt: Initial version of module

This commit is contained in:
Timo Makinen 2021-03-11 16:54:01 +00:00
parent 5322b2268b
commit 36b2f9f9c5
2 changed files with 22 additions and 0 deletions

13
roles/mutt/tasks/main.yml Normal file
View file

@ -0,0 +1,13 @@
---
- name: install packages
package:
name: mutt
state: installed
- name: install global configuration
template:
dest: /etc/Muttrc.local
src: Muttrc.local
mode: 0644
owner: root
group: "{{ ansible_wheel }}"