view ci/load-snd-dummy.sh @ 30784:7e752660614b

Added tag v9.0.0726 for changeset 42725a9ab62fe4043612d0e325275fccbc8fbf10
author Bram Moolenaar <Bram@vim.org>
date Tue, 11 Oct 2022 22:45:04 +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