21 lines
423 B
YAML
21 lines
423 B
YAML
---
|
|
- name: install mate
|
|
apt:
|
|
name: "task-mate-desktop"
|
|
state: present
|
|
|
|
- name: copy autostart script
|
|
copy:
|
|
src: autostart
|
|
dest: /usr/local/bin/autostart
|
|
mode: "0775"
|
|
|
|
- name: create autostart directory
|
|
file:
|
|
path: /etc/skel/.config/autostart/
|
|
state: directory
|
|
|
|
- name: copy autostart desktop file
|
|
copy:
|
|
src: autostart.desktop
|
|
dest: /etc/skel/.config/autostart/autostart.desktop
|