mirror of
https://github.com/pigmonkey/spark.git
synced 2026-01-23 02:24:09 +00:00
add solaar for managing logitech unify receivers
This commit is contained in:
parent
7716992855
commit
2fc02e7ae8
2 changed files with 19 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
18
roles/logitech/tasks/main.yml
Normal file
18
roles/logitech/tasks/main.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue