From 33493594c07e1667eb5ef96f237e0e74837a650b Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 27 May 2019 16:48:44 +0100 Subject: [PATCH] Create autostart directory --- tasks/autostart.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tasks/autostart.yml b/tasks/autostart.yml index f049c28..e7e4d14 100644 --- a/tasks/autostart.yml +++ b/tasks/autostart.yml @@ -8,6 +8,13 @@ with_items: - 'dex' +- name: "Create autostart directory" + file: + path: '{{ home }}/.config/autostart' + state: directory + owner: "{{ user }}" + mode: 0755 + - name: "Autostart services" file: src: "/etc/xdg/autostart/{{ item }}.desktop"