From 46332446da66e00220f87180d6db6e219cf57649 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 9 Apr 2019 20:27:13 +0100 Subject: [PATCH] Install virtualbox dependencies first --- tasks/applications.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tasks/applications.yml b/tasks/applications.yml index 7dded78..455793f 100644 --- a/tasks/applications.yml +++ b/tasks/applications.yml @@ -1,3 +1,14 @@ +- name: "Install Virtualbox dependencies" + aur: + skip_installed: true + name: "{{ item }}" + become: true + become_user: aur_builder + when: "item not in installed_packages.stdout_lines" + with_items: + - 'virtualbox-host-modules-arch' + - 'virtualbox-guest-modules-arch' + - name: "Install general applications" aur: skip_installed: true @@ -31,8 +42,6 @@ - 'thunderbird' - 'tor-browser' - 'virtualbox' - - 'virtualbox-host-modules-arch' - - 'virtualbox-guest-modules-arch' - 'vivaldi' - 'vlc' - 'whatsie'