You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
403 B
YAML
13 lines
403 B
YAML
2 years ago
|
- name: Firefox configuration
|
||
|
hosts: all
|
||
|
user: administrator
|
||
|
become: true
|
||
|
|
||
|
tasks:
|
||
|
- name: Firefox addons folder
|
||
|
file: path=/usr/lib64/firefox/distribution/extensions state=directory
|
||
|
- name: Firefox addons installation
|
||
|
copy:
|
||
|
src: 'files/firefox-addons/uBlock0@raymondhill.net.xpi'
|
||
|
dest: '/usr/lib64/firefox/distribution/extensions/uBlock0@raymondhill.net.xpi'
|