Fix laptop role

This commit is contained in:
Przemek Grondek 2022-09-03 15:53:10 +02:00
parent 026e371cc3
commit 9fa9cb3eee
4 changed files with 21 additions and 23 deletions

View File

@ -26,8 +26,8 @@
target: install
- name: "Enable service"
ansible.builtin.systemd:
become: yes
ansible.builtin.systemd:
name: asusctl
state: started
enabled: yes

View File

@ -1,10 +1,3 @@
- name: Check if laptop has option to limit battery
stat:
path: /sys/class/power_supply/BAT0/charge_control_end_threshold
register: battery_limiter_available
- when: battery_limiter_available.stat.exists
block:
- name: Copy service to limit battery charge
become: yes
copy:

View File

@ -1,5 +1,10 @@
- name: Check if it's laptop
stat:
path: /sys/class/power_supply/BAT0/charge_control_end_threshold
register: battery_limiter_available
- when: battery_limiter_available.stat.exists
block:
- import_tasks: battery.yml
- import_tasks: asusctl.yml
- import_tasks: supergfxctl.yml

View File

@ -26,8 +26,8 @@
target: install
- name: "Enable service"
ansible.builtin.systemd:
become: yes
ansible.builtin.systemd:
name: asusctl
state: started
enabled: yes