aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/roles/linux_status/tasks/main.yml
blob: f3344ff16f1c9a6f0cea1484f7320d81fb2baaff (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                     
 

                            
                          
                      
                  
 





                                           
- 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