view ci/load-snd-dummy.sh @ 24908:f2d35a98ae9c

Added tag v8.2.2991 for changeset 8388176a09541a12dccd42652a6fa0761592e1d3
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Jun 2021 17:30:03 +0200
parents 3a7017ee1161
children
line wrap: on
line source

#!/bin/bash
set -e

if ! modprobe snd-dummy; then
    # snd-dummy is contained in linux-modules-extra (if exists)
    apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi