blob: f3344ff16f1c9a6f0cea1484f7320d81fb2baaff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- name: Configure power management
ansible.builtin.include_tasks: power_management.yml
- name: Install linux-status
become: true
ansible.builtin.package:
name: linux-status
state: present
- name: Enable & start linux-status.service
become: true
ansible.builtin.systemd_service:
name: linux-status.service
enabled: true
state: started
|