view ci/load-snd-dummy.sh @ 30788:884b0ece23a9

Added tag v9.0.0728 for changeset 9f37bcd4d5c59536e8370e78fdf2936088ce54e9
author Bram Moolenaar <Bram@vim.org>
date Wed, 12 Oct 2022 00:15: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