forked from infra/ansible
35 lines
977 B
YAML
35 lines
977 B
YAML
---
|
|
|
|
- name: Install main dependencies
|
|
apt:
|
|
name:
|
|
- xrdp
|
|
- libasound2
|
|
- matchbox-window-manager
|
|
|
|
- name: Configure xrdp.ini
|
|
template: src=xrdp.ini.j2 dest=/etc/xrdp/xrdp.ini
|
|
notify: Restart xrdp
|
|
|
|
- name: Configure sesman.ini
|
|
template: src=sesman.ini.j2 dest=/etc/xrdp/sesman.ini
|
|
notify: Restart xrdp
|
|
|
|
- name: Install LightBurn dependencies
|
|
apt:
|
|
name:
|
|
- libpulse-mainloop-glib0
|
|
- libnss3
|
|
|
|
- name: Create LightBurn group
|
|
group: name={{ lightburn_group }}
|
|
|
|
- name: Create LightBurn user
|
|
user: name={{ lightburn_user }} password={{ lightburn_pass | password_hash('sha512', lightburn_salt) }} home=/home/{{ lightburn_user }} group={{ lightburn_group }}
|
|
|
|
- name: Create LightBurn .xsession
|
|
template: src=lightburn_xsession.j2 dest=/home/{{ lightburn_user }}/.xsession
|
|
|
|
- name: Download LightBurn binary
|
|
get_url: url={{ lightburn_url }} dest={{ lightburn_target }} checksum={{ lightburn_checksum }} mode=0755
|
|
notify: Install LightBurn |