view ci/load-snd-dummy.sh @ 30587:8b4040d04c32

Added tag v9.0.0628 for changeset 4a1b0a12b4301a79cdb2ce7c1aeff27cfd63d6b7
author Bram Moolenaar <Bram@vim.org>
date Fri, 30 Sep 2022 13:15:03 +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