view ci/load-snd-dummy.sh @ 22332:339f74bfd2bd

Added tag v8.2.1714 for changeset 0271c2b8bb35b1fcb5aab48df98a4ffc27656381
author Bram Moolenaar <Bram@vim.org>
date Sun, 20 Sep 2020 21:15: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