23 lines
592 B
YAML
23 lines
592 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: Create xrdp directory
|
|
file: path=/usr/local/share/xrdp/ state=directory mode=0755 owner=root group=root
|
|
|
|
- name: Copy Binary Kitchen Logo
|
|
copy: src={{ xrdp_ls_logo_filename }} dest=/usr/local/share/xrdp/{{ xrdp_ls_logo_filename }}
|
|
notify: Restart xrdp |