view ci/load-snd-dummy.sh @ 22658:05d69fc68432

Added tag v8.2.1877 for changeset 3ccd2fa6b7131ed19b7b62142b081e8111c8e93a
author Bram Moolenaar <Bram@vim.org>
date Wed, 21 Oct 2020 15:00:05 +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