view ci/load-snd-dummy.sh @ 23922:dba960dacd31

Added tag v8.2.2503 for changeset a834f9c082e33a1e5e5ff0ccb2a81118ec221c8d
author Bram Moolenaar <Bram@vim.org>
date Fri, 12 Feb 2021 21:45:05 +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