view ci/load-snd-dummy.sh @ 31417:ed18fed96c8f

Added tag v9.0.1041 for changeset f088f1d97eee70f37c3b1ff93272c5692cb1561f
author Bram Moolenaar <Bram@vim.org>
date Fri, 09 Dec 2022 22: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