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 target: install
- name: "Enable service" - name: "Enable service"
ansible.builtin.systemd:
become: yes become: yes
ansible.builtin.systemd:
name: asusctl name: asusctl
state: started state: started
enabled: yes enabled: yes

View File

@ -1,18 +1,11 @@
- name: Check if laptop has option to limit battery - name: Copy service to limit battery charge
stat: become: yes
path: /sys/class/power_supply/BAT0/charge_control_end_threshold copy:
register: battery_limiter_available src: lib/systemd/system/battery-charge-threshold.service
dest: /lib/systemd/system/battery-charge-threshold.service
- when: battery_limiter_available.stat.exists - name: Enable battery limit service
block: become: yes
- name: Copy service to limit battery charge systemd:
become: yes name: battery-charge-threshold
copy: enabled: yes
src: lib/systemd/system/battery-charge-threshold.service
dest: /lib/systemd/system/battery-charge-threshold.service
- name: Enable battery limit service
become: yes
systemd:
name: battery-charge-threshold
enabled: yes

View File

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

View File

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