- move lubuntu-desktop to its own role
This commit is contained in:
23
roles/lubuntu/tasks/main.yaml
Normal file
23
roles/lubuntu/tasks/main.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
|
||||
- name: install required packages
|
||||
become: true
|
||||
package:
|
||||
name: "{{ dependency_packages }}"
|
||||
state: present
|
||||
- name: sddm autologin
|
||||
become: yes
|
||||
template:
|
||||
src: "{{ role_path }}/templates/sddm.conf.j2"
|
||||
dest: /etc/sddm.conf
|
||||
owner: root
|
||||
|
||||
- name: screensaver
|
||||
ansible.builtin.copy:
|
||||
src: "{{ role_path }}/files/lxqt-powermanagement.conf"
|
||||
dest: "/home/{{ def_username }}/.config/lxqt"
|
||||
owner: "{{ def_username }}"
|
||||
group: "{{ def_username }}"
|
||||
tags: powermanagement
|
||||
|
||||
|
||||
Reference in New Issue
Block a user