view ci/load-snd-dummy.sh @ 25754:f1ed9dbb700a

Added tag v8.2.3412 for changeset c50b3eff7a641e6041b305575908d6aaf865639b
author Bram Moolenaar <Bram@vim.org>
date Tue, 07 Sep 2021 22:45: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