thunderbird: Initial version of role

Only disables saving passwords for now.
This commit is contained in:
Timo Makinen 2021-03-11 21:07:29 +00:00
parent 9f4d15e041
commit 72e24d725d
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,2 @@
// set defaults but allow user to change
pref("signon.rememberSignons", false);

View file

@ -0,0 +1,13 @@
---
- name: install packages
package:
name: thunderbird
state: installed
- name: install default settings
copy:
dest: /usr/lib64/thunderbird/defaults/pref/00-foo.sh.js
src: foo.sh.js
mode: 0644
owner: root
group: "{{ ansible_wheel }}"