view ci/load-snd-dummy.sh @ 26489:f19d8c077771

Added tag v8.2.3774 for changeset 06aa56b32df4d8b4131872352080b5fafe060c5a
author Bram Moolenaar <Bram@vim.org>
date Fri, 10 Dec 2021 14:45:04 +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