From dce79b2b9f8f9cbf1412d1e72f49b104b1f39535 Mon Sep 17 00:00:00 2001 From: Tom Downes Date: Fri, 28 Apr 2023 10:41:13 -0500 Subject: [PATCH] Enable Debian 11 and Ubuntu 22.04 support in Chrome Remote Desktop module --- .../scripts/configure-grid-drivers.yml | 48 ++++++++++++++----- 1 file changed, 37 insertions(+), 11 deletions(-) diff --git a/community/modules/remote-desktop/chrome-remote-desktop/scripts/configure-grid-drivers.yml b/community/modules/remote-desktop/chrome-remote-desktop/scripts/configure-grid-drivers.yml index fbd1b3a796..8ddf94cb65 100644 --- a/community/modules/remote-desktop/chrome-remote-desktop/scripts/configure-grid-drivers.yml +++ b/community/modules/remote-desktop/chrome-remote-desktop/scripts/configure-grid-drivers.yml @@ -16,7 +16,28 @@ - name: Ensure nvidia grid drivers and other binaries are installed hosts: localhost become: true + vars: + packages: + bullseye: + - build-essential + - gdebi-core + - mesa-utils + - gdm3 + jammy: + - build-essential + - gdebi-core + - mesa-utils + - gdm3 + - gcc-12 # must match compiler used to build kernel on latest Ubuntu 22 + - pkg-config # observed to be necessary for GRID driver installation on latest Ubuntu 22 + - libglvnd-dev # observed to be necessary for GRID driver installation on latest Ubuntu 22 tasks: + - name: Fail if using wrong OS + ansible.builtin.assert: + that: + - ansible_os_family in ["Debian", "Ubuntu"] + - ansible_distribution_release in ["bullseye", "jammy"] + - name: Check if GRID driver installed ansible.builtin.command: which nvidia-smi register: nvidiasmi_result @@ -28,17 +49,13 @@ register: uname_result changed_when: false + - name: Set all packages + ansible.builtin.set_fact: + all_packages: '{{ packages[ansible_distribution_release] + ["linux-headers-" + uname_result.stdout] }}' + - name: Install binaries for GRID drivers ansible.builtin.apt: - name: - - linux-headers-{{ uname_result.stdout }} - - build-essential - - gdebi-core - - mesa-utils - - gdm3 - - gcc-12 - - pkg-config - - libglvnd-dev + name: "{{ all_packages }}" state: present update_cache: true register: apt_result @@ -47,6 +64,7 @@ until: apt_result is success - name: Install GRID driver if not existing + when: nvidiasmi_result is failed block: - name: Download GPU driver ansible.builtin.get_url: @@ -61,10 +79,14 @@ - name: Install GPU driver ansible.builtin.shell: | + #jinja2: trim_blocks: "True" + {% if ansible_distribution_release == "jammy" %} CC=gcc-12 /tmp/NVIDIA-Linux-x86_64-510.85.02-grid.run --silent + {% else %} + /tmp/NVIDIA-Linux-x86_64-510.85.02-grid.run --silent + {% endif %} register: result changed_when: result.rc == 0 - when: nvidiasmi_result is failed - name: Download VirtualGL driver ansible.builtin.get_url: @@ -86,7 +108,11 @@ changed_when: false - name: Extract PCI ID - ansible.builtin.shell: echo "{{ gpu_info.stdout }}" | grep "PCI BusID " | head -n 1 | cut -d':' -f2-99 | xargs + ansible.builtin.shell: | + set -o pipefail + echo "{{ gpu_info.stdout }}" | grep "PCI BusID " | head -n 1 | cut -d':' -f2-99 | xargs + args: + executable: /bin/bash register: pci_id changed_when: false