view ci/load-snd-dummy.sh @ 27991:e8cad604c218

Added tag v8.2.4520 for changeset 27ae8ea82d7ab9e0e4f8f894394dad7fd6344a5a
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Mar 2022 21:00:07 +0100
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