view ci/load-snd-dummy.sh @ 24975:acf2c62bee13

Added tag v8.2.3024 for changeset 2d4cef0a8faa366f7343d7abee779046fc2c4f2f
author Bram Moolenaar <Bram@vim.org>
date Sun, 20 Jun 2021 15:15:05 +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