add solaar for managing logitech unify receivers

This commit is contained in:
Pig Monkey 2018-12-13 19:16:50 -08:00
parent 7716992855
commit 2fc02e7ae8
2 changed files with 19 additions and 0 deletions

View file

@ -76,6 +76,7 @@
- { role: kiwix, tags: ['kiwix'] }
- { role: syncthing, tags: ['syncthing'], when: "syncthing is defined" }
- { role: mirrorlist, tags: ['mirrorlist'], when: "mirrorlist is defined" }
- { role: logitech, tags: ['logitech'] }
vars_prompt:
- name: user_password
prompt: "Enter desired user password"

View file

@ -0,0 +1,18 @@
---
- name: Add plugdev group
group:
name: plugdev
state: present
- name: Add {{ user.name }} to plugdev group
user:
name: "{{ user.name }}"
groups: plugdev
append: yes
tags:
- user
- name: Install Solaar
pacman:
name: solaar
state: present