From 2a953b057e1b188ea8e898d5f31aac7f299a4313 Mon Sep 17 00:00:00 2001 From: Kyle Laker Date: Sat, 16 Dec 2017 13:48:35 -0500 Subject: [PATCH] OEM: Create /usr/local/share/applications Create this directory when running the OEM steps in the hope that when the user runs roles for courses later and the .desktop files get installed that Cinnamon will detect them automatically (without a reboot). --- roles/oem/tasks/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/oem/tasks/main.yml b/roles/oem/tasks/main.yml index 7deefa96..6e594ff1 100644 --- a/roles/oem/tasks/main.yml +++ b/roles/oem/tasks/main.yml @@ -33,6 +33,13 @@ src: welcome-to-vm.desktop dest: /etc/skel/Desktop/welcome-to-vm.desktop mode: 0644 +- name: Create the /usr/local/share/applications folder + file: + path: /usr/local/share/applications + state: directory + mode: 0755 + owner: root + group: staff - name: Validate missing USB 2/3 controllers shell: lspci | grep -i -e EHCI -e xHCI register: lspci_output